Home
last modified time | relevance | path

Searched refs:PropData (Results 1 – 8 of 8) sorted by relevance

/expo/docs/components/plugins/api/
H A DAPIDataTypes.ts116 children: PropData[];
160 children?: PropData[];
164 export type PropData = { alias
198 parameters?: PropData[];
199 children?: PropData[];
H A DAPISectionNamespaces.tsx6 PropData,
27 const isMethod = (child: PropData, allowOverwrites: boolean = false) =>
39 .sort((a: PropData, b: PropData) => a.name.localeCompare(b.name));
H A DAPISectionMethods.tsx10 PropData,
35 data: (MethodDefinitionData | PropData)[];
48 method: MethodDefinitionData | AccessorDefinitionData | PropData,
53 (method as PropData)?.type?.declaration?.signatures || [
113 {data.map((method: MethodDefinitionData | PropData) =>
H A DAPISectionClasses.tsx6 PropData,
39 const isProp = (child: PropData) =>
45 const isMethod = (child: PropData, allowOverwrites: boolean = false) =>
72 .sort((a: PropData, b: PropData) => a.name.localeCompare(b.name));
H A DAPISectionProps.tsx5 PropData,
40 { comment, name }: PropData,
48 (defaultProp: PropData) => defaultProp.name === name
112 { comment, name, type, flags, signatures }: PropData,
H A DAPISectionInterfaces.tsx8 PropData,
88 }: PropData): JSX.Element => {
H A DAPISectionTypes.tsx5 PropData,
77 }: PropData): JSX.Element => {
H A DAPISectionUtils.tsx19 PropData,
319 {declaration?.children.map((child: PropData, i) => (
654 export const getComponentName = (name?: string, children: PropData[] = []) => {
656 const ctor = children.filter((child: PropData) => child.name === 'constructor')[0];