SYMBOL INDEX (313 symbols across 129 files) FILE: config/.storybook/config.js function loadStories (line 9) | function loadStories() { FILE: config/.storybook/webpack.config.js constant ROOT_PATH (line 3) | const ROOT_PATH = path.resolve(__dirname, '../../'); FILE: config/generators/utils/safeString.js function SafeString (line 1) | function SafeString(string) { FILE: config/testing/preprocessor.js constant BABELRC_FILENAME (line 12) | const BABELRC_FILENAME = '.babelrc'; method getCacheKey (line 52) | getCacheKey( method process (line 67) | process( FILE: packages/docs/config/generators/utils/safeString.js function SafeString (line 1) | function SafeString(string) { FILE: packages/docs/src/client/components/AddComment/index.tsx function AddComment (line 15) | function AddComment({ FILE: packages/docs/src/client/components/AddComment/types.ts type AddCommentProps (line 4) | interface AddCommentProps extends React.Props { FILE: packages/docs/src/client/components/Comment/index.tsx function Comment (line 13) | function Comment({ FILE: packages/docs/src/client/components/Comment/styles.ts type PicProps (line 30) | interface PicProps { FILE: packages/docs/src/client/components/Comment/types.ts type CommentProps (line 4) | interface CommentProps extends React.Props { FILE: packages/docs/src/client/components/NavBar/index.tsx function NavBar (line 13) | function NavBar({ FILE: packages/docs/src/client/components/NavBar/types.ts type Navlink (line 4) | interface Navlink { url: string; text: string; } type NavBarProps (line 5) | interface NavBarProps extends React.Props { FILE: packages/docs/src/client/components/Pic/index.tsx type PicProps (line 4) | interface PicProps { FILE: packages/docs/src/client/components/Post/index.tsx function Post (line 6) | function Post({ FILE: packages/docs/src/client/components/Post/types.ts type PostComment (line 1) | interface PostComment { type PostProps (line 6) | interface PostProps { FILE: packages/docs/src/client/components/PostCard/index.tsx function PostCard (line 16) | function PostCard({ FILE: packages/docs/src/client/components/PostCard/shortenText.ts function shortenText (line 1) | function shortenText(text: string, maxLength: number) { FILE: packages/docs/src/client/components/PostCard/styles.ts type CardThumbnailProps (line 4) | interface CardThumbnailProps { FILE: packages/docs/src/client/components/PostCard/types.ts type PostCardProps (line 1) | interface PostCardProps { FILE: packages/docs/src/client/components/utils/remStringFromPx.ts type Px (line 1) | type Px = number; type Rem (line 2) | type Rem = number; FILE: packages/docs/src/client/containers/About/contributors.ts type Contributor (line 3) | interface Contributor { FILE: packages/docs/src/client/containers/About/index.tsx class About (line 25) | class About extends React.Component { method render (line 26) | public render() { FILE: packages/docs/src/client/containers/About/styles.ts type AboutSectionProps (line 8) | interface AboutSectionProps { type AboutSectionInnerProps (line 20) | interface AboutSectionInnerProps { FILE: packages/docs/src/client/containers/App/actions.ts type SetIsMobileAction (line 5) | interface SetIsMobileAction extends Action { type FeatureAction (line 10) | type FeatureAction = FILE: packages/docs/src/client/containers/App/constants.ts type SET_MOBILE_TYPE (line 1) | type SET_MOBILE_TYPE = 'APP/SET_MOBILE'; constant SET_MOBILE (line 2) | const SET_MOBILE: SET_MOBILE_TYPE = 'APP/SET_MOBILE'; FILE: packages/docs/src/client/containers/App/index.tsx type OwnProps (line 11) | interface OwnProps { } FILE: packages/docs/src/client/containers/App/presentation.tsx type StateProps (line 8) | type StateProps = State; type DispatchProps (line 10) | interface DispatchProps { type FeatureProps (line 16) | type FeatureProps = React.Props & StateProps & DispatchProps; class Feature (line 18) | class Feature extends React.Component { method constructor (line 19) | constructor(props) { method componentDidMount (line 23) | public componentDidMount() { method componentWillUnmount (line 27) | public componentWillUnmount() { method render (line 38) | public render() { FILE: packages/docs/src/client/containers/App/state.ts type NavLink (line 1) | interface NavLink { type State (line 6) | interface State { FILE: packages/docs/src/client/containers/App/types.ts type NavLink (line 3) | interface NavLink { url: string; text: string; } type Props (line 5) | interface Props extends React.Props { FILE: packages/docs/src/client/containers/Blog/index.tsx class Blog (line 9) | class Blog extends React.Component { method constructor (line 10) | constructor() { method handleClearError (line 17) | private handleClearError() { method render (line 22) | public render() { FILE: packages/docs/src/client/containers/Blog/types.ts type Post (line 3) | interface Post { type Props (line 10) | interface Props extends React.Props { type State (line 16) | interface State { FILE: packages/docs/src/client/containers/BlogPost/actionCreators.ts type InputActionCreator (line 8) | type InputActionCreator = ActionCreator; type ActionCreatorTypes (line 14) | interface ActionCreatorTypes extends ActionCreatorsMapObject { FILE: packages/docs/src/client/containers/BlogPost/actions.ts type InputAction (line 5) | interface InputAction extends Action { type ActionTypes (line 10) | type ActionTypes = InputAction; FILE: packages/docs/src/client/containers/BlogPost/constants.ts type INPUT_TYPE (line 1) | type INPUT_TYPE = 'BLOG_POST/INPUT'; constant INPUT (line 2) | const INPUT: INPUT_TYPE = 'BLOG_POST/INPUT'; FILE: packages/docs/src/client/containers/BlogPost/index.tsx type MapStateToProps (line 14) | type MapStateToProps = (state: State) => StateProps; type MapDispatch (line 19) | type MapDispatch = (dispatch: Dispatch) => DispatchProps; type Props (line 27) | interface Props { type StateProps (line 39) | interface StateProps { type DispatchProps (line 42) | interface DispatchProps { type PropTypes (line 45) | type PropTypes = StateProps & DispatchProps & Props; class BlogPost (line 46) | class BlogPost extends React.Component { method constructor (line 47) | constructor() { method handleInput (line 53) | private handleInput(e: React.SyntheticEvent) { method handleAddingComment (line 58) | private handleAddingComment() { method handleEnterKeyUp (line 72) | private handleEnterKeyUp(e: React.KeyboardEvent) { method render (line 78) | public render() { FILE: packages/docs/src/client/containers/BlogPost/presentation.tsx type Props (line 7) | interface Props { class BlogPostPresentation (line 17) | class BlogPostPresentation extends React.Component { method render (line 18) | public render() { FILE: packages/docs/src/client/containers/BlogPost/state.ts type State (line 3) | interface State { FILE: packages/docs/src/client/containers/BlogPost/types.ts type OnInput (line 10) | type OnInput = (e: React.SyntheticEvent) => void; type OnSubmit (line 11) | type OnSubmit = () => void; type OnKeyUp (line 12) | type OnKeyUp = (e: React.KeyboardEvent) => void; type PostComment (line 14) | interface PostComment { type Post (line 19) | interface Post { type ErrorType (line 27) | interface ErrorType { message: string; } type Input (line 29) | type Input = string; type Body (line 31) | type Body = string; type Author (line 32) | type Author = string; type PostId (line 33) | type PostId = string; type PostSubmission (line 34) | interface PostSubmission { type SubmitComment (line 42) | type SubmitComment = (post: PostSubmission) => Promise; FILE: packages/docs/src/client/containers/Docs/__tests__/logic.test.ts method get (line 7) | get(url) { return Promise.resolve({ data: 'testData' }); } FILE: packages/docs/src/client/containers/Docs/actions.ts type LoadInitiationAction (line 5) | interface LoadInitiationAction extends Action { type LoadSuccessAction (line 9) | interface LoadSuccessAction extends Action { type LoadFailureAction (line 14) | interface LoadFailureAction extends Action { type LoadCancelAction (line 19) | interface LoadCancelAction extends Action { type ClearErrorAction (line 23) | interface ClearErrorAction extends Action { type FeatureAction (line 27) | type FeatureAction = FILE: packages/docs/src/client/containers/Docs/constants.ts type LOAD_INITIATION_TYPE (line 1) | type LOAD_INITIATION_TYPE = 'DOCS/LOAD_INITIATION'; constant LOAD_INITIATION (line 2) | const LOAD_INITIATION: LOAD_INITIATION_TYPE = 'DOCS/LOAD_INITIATION'; type LOAD_SUCCESS_TYPE (line 4) | type LOAD_SUCCESS_TYPE = 'DOCS/LOAD_SUCCESS'; constant LOAD_SUCCESS (line 5) | const LOAD_SUCCESS: LOAD_SUCCESS_TYPE = 'DOCS/LOAD_SUCCESS'; type LOAD_FAILURE_TYPE (line 7) | type LOAD_FAILURE_TYPE = 'DOCS/LOAD_FAILURE'; constant LOAD_FAILURE (line 8) | const LOAD_FAILURE: LOAD_FAILURE_TYPE = 'DOCS/LOAD_FAILURE'; type LOAD_CANCEL_TYPE (line 10) | type LOAD_CANCEL_TYPE = 'DOCS/LOAD_CANCEL'; constant LOAD_CANCEL (line 11) | const LOAD_CANCEL: LOAD_CANCEL_TYPE = 'DOCS/LOAD_CANCEL'; type CLEAR_ERROR_TYPE (line 13) | type CLEAR_ERROR_TYPE = 'DOCS/CLEAR_ERROR'; constant CLEAR_ERROR (line 14) | const CLEAR_ERROR: CLEAR_ERROR_TYPE = 'DOCS/CLEAR_ERROR'; FILE: packages/docs/src/client/containers/Docs/index.tsx type OwnProps (line 11) | interface OwnProps { } FILE: packages/docs/src/client/containers/Docs/logic.ts method process (line 16) | process({ httpClient }) { FILE: packages/docs/src/client/containers/Docs/presentation.tsx type StateProps (line 12) | type StateProps = State; type DispatchProps (line 14) | interface DispatchProps { type FeatureProps (line 23) | type FeatureProps = React.Props & StateProps & DispatchProps; class Feature (line 25) | class Feature extends React.Component { method constructor (line 26) | constructor(props) { method render (line 34) | public render() { FILE: packages/docs/src/client/containers/Docs/state.ts type State (line 1) | interface State { FILE: packages/docs/src/client/containers/Features/index.tsx class Features (line 15) | class Features extends React.Component { method render (line 16) | public render() { FILE: packages/docs/src/client/containers/Features/styles.ts type FeaturesSectionProps (line 8) | interface FeaturesSectionProps { type FeatureSectionInnerProps (line 20) | interface FeatureSectionInnerProps { FILE: packages/docs/src/client/containers/Features/types.ts type Props (line 5) | interface Props extends React.Props { FILE: packages/docs/src/client/containers/Home/index.tsx type Props (line 7) | interface Props { theme: ThemeColorMap; } class Home (line 8) | class Home extends React.Component { method render (line 9) | public render() { FILE: packages/docs/src/client/containers/Home/presentation.tsx type Props (line 6) | interface Props extends HomeProps { function HomePresentation (line 9) | function HomePresentation({ FILE: packages/docs/src/client/containers/TodoApp/actionCreators.ts type AddTodoActionCreator (line 10) | type AddTodoActionCreator = ActionCreator; type InputActionCreator (line 16) | type InputActionCreator = ActionCreator; type DeleteTodoActionCreator (line 22) | type DeleteTodoActionCreator = ActionCreator; type ActionCreatorTypes (line 28) | interface ActionCreatorTypes extends ActionCreatorsMapObject { FILE: packages/docs/src/client/containers/TodoApp/actions.ts type AddTodoAction (line 5) | interface AddTodoAction extends Action { type InputAction (line 10) | interface InputAction extends Action { type DeleteTodoAction (line 15) | interface DeleteTodoAction extends Action { type ActionTypes (line 20) | type ActionTypes = AddTodoAction | InputAction | DeleteTodoAction; FILE: packages/docs/src/client/containers/TodoApp/constants.ts type ADD_TODO_TYPE (line 1) | type ADD_TODO_TYPE = 'TODO_APP/ADD_TODO'; constant ADD_TODO (line 2) | const ADD_TODO: ADD_TODO_TYPE = 'TODO_APP/ADD_TODO'; type INPUT_TYPE (line 4) | type INPUT_TYPE = 'TODO_APP/INPUT'; constant INPUT (line 5) | const INPUT: INPUT_TYPE = 'TODO_APP/INPUT'; type DELETE_TODO_TYPE (line 7) | type DELETE_TODO_TYPE = 'TODO_APP/DELETE_TODO'; constant DELETE_TODO (line 8) | const DELETE_TODO: DELETE_TODO_TYPE = 'TODO_APP/DELETE_TODO'; FILE: packages/docs/src/client/containers/TodoApp/index.tsx type StateProps (line 26) | interface StateProps extends React.Props { type DispatchProps (line 30) | interface DispatchProps { type Props (line 33) | type Props = DispatchProps & StateProps; class TodoApp (line 34) | class TodoApp extends React.Component { method constructor (line 35) | constructor() { method handleAddition (line 41) | private handleAddition(e: React.KeyboardEvent) { method handleInput (line 48) | private handleInput(e: React.SyntheticEvent) { method handleDeletion (line 53) | private handleDeletion(i: Index) { method render (line 56) | public render() { FILE: packages/docs/src/client/containers/TodoApp/presentation.tsx type Props (line 17) | interface Props extends StateProps { class TodoAppPresentation (line 22) | class TodoAppPresentation extends React.Component { method render (line 23) | public render() { FILE: packages/docs/src/client/containers/TodoApp/state.ts type State (line 3) | interface State { FILE: packages/docs/src/client/containers/TodoApp/types.ts type Todo (line 6) | interface Todo { type Input (line 10) | type Input = string; type Index (line 12) | type Index = number; FILE: packages/docs/src/client/shared/actions.ts type DefaultAction (line 4) | interface DefaultAction extends Action { type PayloadAction (line 8) | interface PayloadAction

extends Action { FILE: packages/docs/src/client/shared/constants.ts type DEFAULT_ACTION_TYPE (line 1) | type DEFAULT_ACTION_TYPE = ''; constant DEFAULT_ACTION_TYPE (line 2) | const DEFAULT_ACTION_TYPE: DEFAULT_ACTION_TYPE = ''; FILE: packages/docs/src/client/state.ts type State (line 7) | interface State { FILE: packages/docs/src/client/store.tsx function createThunkMiddleware (line 16) | function createThunkMiddleware() { FILE: packages/docs/src/client/theming/types.ts type ThemeColorMap (line 1) | interface ThemeColorMap { FILE: packages/docs/src/client/types.ts type PayloadAction (line 12) | interface PayloadAction

extends Action { type FormControlEventTarget (line 17) | interface FormControlEventTarget extends EventTarget { FILE: packages/docs/src/server/db/index.ts function seedPosts (line 5) | function seedPosts() { function createSeedPosts (line 16) | function createSeedPosts() { function createSeedData (line 34) | function createSeedData() { FILE: packages/docs/src/server/db/utils/uuid.ts function uuid (line 2) | function uuid() { FILE: packages/docs/src/server/graph/mutations/comment/createComment.ts method resolve (line 16) | async resolve(_, args, __) { FILE: packages/docs/src/server/graph/queries/comment/comment.ts method resolve (line 16) | resolve(_, args, __) { FILE: packages/docs/src/server/graph/queries/comment/comments.ts method resolve (line 16) | resolve(_, args, __) { FILE: packages/docs/src/server/graph/queries/post/post.ts method resolve (line 16) | resolve(_, args, __) { FILE: packages/docs/src/server/graph/queries/post/posts.ts method resolve (line 11) | resolve() { FILE: packages/docs/src/server/graphqlEntry.ts function createSchema (line 12) | function createSchema() { function graphqlEntry (line 30) | function graphqlEntry(app): Promise { FILE: packages/docs/webpack.config.js constant ROOT_PATH (line 3) | const ROOT_PATH = path.resolve(__dirname); FILE: packages/docs/webpack.config.prod.js constant ROOT_PATH (line 9) | const ROOT_PATH = path.resolve(__dirname); FILE: packages/docs/webpack.config.server.js constant ROOT_PATH (line 3) | const ROOT_PATH = path.resolve(__dirname); FILE: packages/openui/src/Anchor/index.tsx type Method (line 7) | type Method = 'push' | 'replace'; type Props (line 8) | interface Props extends React.Props { class Anchor (line 18) | class Anchor extends React.Component { method render (line 35) | public render() { FILE: packages/openui/src/Article/index.tsx type Props (line 6) | interface Props extends BoxProps { function Article (line 10) | function Article({ FILE: packages/openui/src/Avatar/index.tsx type ImageSize (line 5) | type ImageSize = 'thumb' | 'small' | 'medium' | 'large'; type Props (line 6) | interface Props { FILE: packages/openui/src/Box/index.tsx function Box (line 5) | function Box({ FILE: packages/openui/src/Box/maps.ts constant SIZE_MAP (line 1) | const SIZE_MAP = { constant BOX_SIZE_MAP (line 9) | const BOX_SIZE_MAP = { constant BREAKPOINTS (line 19) | const BREAKPOINTS = { FILE: packages/openui/src/Box/styleUtils.ts function calculateFlexWrap (line 22) | function calculateFlexWrap(wrap?: boolean, reverse?: boolean): WrapOption { function sizeToString (line 32) | function sizeToString(size: Size | SizeObject, smallSize: boolean = fals... function stringBoxStyle (line 46) | function stringBoxStyle(size: BoxSize): SizeStyle { function objectBoxStyle (line 60) | function objectBoxStyle(size: BoxSizeObject): SizeStyle { function boxSizeToStyle (line 79) | function boxSizeToStyle(size: BoxSize | BoxSizeObject): SizeStyle { function calculateFullStyle (line 89) | function calculateFullStyle(full: Full, postFix: 'vw' | 'vh'): string { FILE: packages/openui/src/Box/types.ts type Size (line 1) | type Size = 'none' | 'small' | 'medium' | 'large' | 'xlarge'; type SizeObject (line 2) | interface SizeObject { horizontal?: Size; vertical?: Size; } type Breakpoint (line 3) | type Breakpoint = 'mobile' | 'tablet' | 'desktop'; type ResponsiveSize (line 4) | interface ResponsiveSize { type BoxSize (line 9) | type BoxSize = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge' | 'xx... type BoxSizeObject (line 10) | interface BoxSizeObject { horizontal?: BoxSize; vertical?: BoxSize; } type FullObject (line 11) | interface FullObject { horizontal?: boolean; vertical?: boolean; } type Full (line 12) | type Full = boolean | FullObject; type WrapOption (line 13) | type WrapOption = 'wrap' | 'wrap-reverse' | 'nowrap'; type Rem (line 14) | type Rem = number; type Px (line 15) | type Px = number; type SizeStyle (line 17) | interface SizeStyle { type Props (line 22) | interface Props { FILE: packages/openui/src/Button/index.tsx type Props (line 7) | interface Props extends React.HTMLProps { method render (line 23) | public render() { FILE: packages/openui/src/Button/types.ts type Size (line 4) | type Size = 'xsmall' | 'small' | 'medium' | 'large' | 'xlarge'; FILE: packages/openui/src/Footer/index.tsx type Props (line 4) | interface Props extends React.Props { function Footer (line 7) | function Footer({ FILE: packages/openui/src/Header/header.tsx type Props (line 5) | interface Props { function Header (line 15) | function Header(props: Props): JSX.Element { FILE: packages/openui/src/Header/index.tsx type Props (line 5) | interface Props { type State (line 9) | interface State { class Header (line 13) | class Header extends React.Component { method constructor (line 14) | public constructor() { method componentDidMount (line 26) | public componentDidMount() { method componentWillUnmount (line 31) | public componentWillUnmount() { method handleScroll (line 36) | private handleScroll() { method backgroundColor (line 43) | private backgroundColor() { method render (line 53) | public render() { FILE: packages/openui/src/Header/styles.ts function translateStyle (line 4) | function translateStyle({ state, height }: HeaderComponentProps) { type OwnProps (line 12) | type OwnProps = Props & HeaderComponentProps; function headerStyles (line 13) | function headerStyles() { FILE: packages/openui/src/Header/utils.ts type State (line 1) | type State = 'Pinned' | 'Unpinned'; type HeaderState (line 2) | interface HeaderState { type GetHeaderState (line 8) | type GetHeaderState = ( FILE: packages/openui/src/Heading/index.tsx type Tag (line 5) | type Tag = 'h1' | 'h2' | 'h3' | 'h4' | 'h5'; type Props (line 7) | interface Props { class Heading (line 16) | class Heading extends React.Component { method render (line 25) | public render() { FILE: packages/openui/src/Headline/index.tsx type Props (line 6) | interface Props { class Headline (line 14) | class Headline extends React.Component { method render (line 22) | public render() { FILE: packages/openui/src/Headline/styleUtils.ts type SizeMap (line 3) | interface SizeMap { type HeadlineSize (line 17) | type HeadlineSize = 'small' | 'medium' | 'xlage' | 'xlarge'; function calculateSize (line 18) | function calculateSize(size: HeadlineSize): string { FILE: packages/openui/src/Headline/types.ts type TextAligment (line 4) | type TextAligment = 'center' | 'left' | 'right' | 'justify'; type FontWeight (line 5) | type FontWeight = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800; FILE: packages/openui/src/Hero/index.tsx type Props (line 4) | interface Props extends React.HTMLProps { function Hero (line 10) | function Hero({ FILE: packages/openui/src/Hero/styles.ts function background (line 4) | function background(props: Props) { function height (line 16) | function height(props: Props) { FILE: packages/openui/src/Image/index.tsx type ImageSize (line 4) | type ImageSize = 'thumb' | 'xxsmall' | 'xsmall' | 'small' | 'medium' | '... type Props (line 6) | interface Props { FILE: packages/openui/src/LoadingIndicator/index.tsx type Props (line 6) | interface Props extends React.Props { function LoadingIndicator (line 9) | function LoadingIndicator({ FILE: packages/openui/src/Markdown/index.tsx type Props (line 5) | interface Props extends React.Props { function Markdown (line 8) | function Markdown({ FILE: packages/openui/src/Notification/index.tsx type Props (line 6) | interface Props extends React.HTMLProps { function Notification (line 10) | function Notification({ FILE: packages/openui/src/Notification/types.ts type Status (line 2) | type Status = 'none' | 'ok' | 'warning' | 'error'; FILE: packages/openui/src/Paragraph/index.tsx type ParagraphSize (line 4) | type ParagraphSize = 'small' | 'medium' | 'large' | 'xlarge'; type Margin (line 5) | type Margin = 'none' | 'small' | 'medium' | 'large'; type SizeMap (line 7) | interface SizeMap { type MarginSizeMap (line 14) | interface MarginSizeMap { type Props (line 21) | interface Props { FILE: packages/openui/src/Paragraph/styleUtils.ts function calculateMargin (line 18) | function calculateMargin(margin: Margin): string { function calculateSize (line 22) | function calculateSize(size: ParagraphSize): string { FILE: packages/openui/src/Paragraph/styles.ts function marginCss (line 12) | function marginCss(margin: Margin) { FILE: packages/openui/src/Section/index.tsx function Section (line 5) | function Section({ FILE: packages/openui/src/SvgIcon/index.tsx type Props (line 4) | type Props = SvgProps & React.HTMLProps; function SvgIcon (line 5) | function SvgIcon({ FILE: packages/openui/src/SvgIcon/types.ts type SvgProps (line 2) | interface SvgProps extends React.SVGProps { FILE: packages/openui/src/Toast/index.tsx type Props (line 7) | interface Props extends BoxProps { type State (line 14) | interface State { class Toast (line 19) | class Toast extends React.Component { method constructor (line 23) | constructor() { method componentDidMount (line 31) | public componentDidMount() { method handleClose (line 36) | private handleClose() { method render (line 50) | public render() { FILE: packages/openui/src/Toast/types.ts type Status (line 3) | type Status = 'ok' | 'warning' | 'error' | 'none'; FILE: packages/openui/src/WithAnimation/animation.ts function styles (line 4) | function styles(props: Props) { function transition (line 23) | function transition(props: Props) { function delay (line 30) | function delay({ delay }: Props) { FILE: packages/openui/src/WithAnimation/index.tsx type Props (line 6) | interface Props { type HOC (line 15) | type HOC = (props: Props) => JSX.Element; FILE: packages/openui/src/WithAnimation/types.ts type AnimationType (line 3) | type AnimationType = 'fadeIn' | 'fadeInUp'; FILE: packages/openui/src/theming/types.ts type ThemeColorMap (line 1) | interface ThemeColorMap { FILE: packages/openui/src/utils/remStringFromPx.ts type Px (line 1) | type Px = number; type Rem (line 2) | type Rem = number; FILE: src/client/components/Html/index.tsx type Props (line 4) | interface Props { function Html (line 12) | function Html({ FILE: src/client/features/Landing/index.tsx type Props (line 4) | interface Props { class Landing (line 8) | class Landing extends React.Component { method render (line 9) | public render() { FILE: src/client/features/Landing/presentation.tsx function LandingPresentation (line 6) | function LandingPresentation({ title }: Props) { FILE: src/client/features/Layout/index.tsx type Props (line 4) | interface Props { class Layout (line 8) | class Layout extends React.Component { method render (line 9) | public render() { FILE: src/client/features/Layout/presentation.tsx function LayoutPresentation (line 5) | function LayoutPresentation({ children }: Props): JSX.Element { FILE: src/client/shared/actions.ts type DefaultAction (line 4) | interface DefaultAction extends Action { type PayloadAction (line 8) | interface PayloadAction

extends Action { FILE: src/client/shared/constants.ts type DEFAULT_ACTION_TYPE (line 1) | type DEFAULT_ACTION_TYPE = ''; constant DEFAULT_ACTION_TYPE (line 2) | const DEFAULT_ACTION_TYPE: DEFAULT_ACTION_TYPE = ''; FILE: src/client/state.ts type State (line 3) | interface State { FILE: src/client/store.tsx function createThunkMiddleware (line 16) | function createThunkMiddleware() { FILE: src/client/theming/types.ts type ThemeColorMap (line 1) | interface ThemeColorMap { FILE: src/client/types.ts type PayloadAction (line 7) | interface PayloadAction

extends Action { type FormControlEventTarget (line 12) | interface FormControlEventTarget extends EventTarget { FILE: src/server/db/index.ts function seedPosts (line 5) | function seedPosts() { function createSeedPosts (line 16) | function createSeedPosts() { function createSeedData (line 34) | function createSeedData() { FILE: src/server/db/utils/uuid.ts function uuid (line 2) | function uuid() { FILE: src/server/graphqlEntry.ts function createSchema (line 12) | function createSchema() { function graphqlEntry (line 30) | function graphqlEntry(app): Promise { FILE: webpack.config.js constant ROOT_PATH (line 4) | const ROOT_PATH = path.resolve(__dirname); FILE: webpack.config.prod.js constant ROOT_PATH (line 9) | const ROOT_PATH = path.resolve(__dirname); FILE: webpack.config.server.js constant ROOT_PATH (line 3) | const ROOT_PATH = path.resolve(__dirname);