Type aliases
AST
AST: any
Defined in node_modules/@types/prettier/index.d.ts:10
ArrayBufferLike
ArrayBufferLike: ArrayBufferTypes [ keyof ArrayBufferTypes ]
Defined in node_modules/typescript/lib/lib.es5.d.ts:1560
ArrayKeys
ArrayKeys<T>: {} [ keyof T ]
Defined in node_modules/@types/babel__traverse/index.d.ts:68
Type parameters
Binary
Defined in node_modules/@babel/types/lib/index.d.ts:1571
BlobPart
Defined in node_modules/@types/node-fetch/index.d.ts:127
Block
Defined in node_modules/@babel/types/lib/index.d.ts:1574
BlockParent
Defined in node_modules/@babel/types/lib/index.d.ts:1573
BodyInit
Defined in node_modules/@types/node-fetch/index.d.ts:205
BufferEncoding
BufferEncoding: "ascii" | "utf8" | "utf-8" | "utf16le" | "ucs2" | "ucs-2" | "base64" | "latin1" | "binary" | "hex"
Defined in node_modules/@types/node/globals.d.ts:74
BuiltInParser
Built
InParser: ( text: string , options?: any ) => AST
Defined in node_modules/@types/prettier/index.d.ts:25
Type declaration
( text: string , options?: any ) : AST
Parameters
text: string
Optional options: any
Returns AST
BuiltInParserName
BuiltInParserName: "babel" | "babel-flow" | "babel-ts" | "flow" | "typescript" | "css" | "less" | "scss" | "json" | "json5" | "json-stringify" | "graphql" | "markdown" | "vue" | "html" | "angular" | "mdx" | "yaml" | "lwc"
Defined in node_modules/@types/prettier/index.d.ts:26
BuiltInParsers
Defined in node_modules/@types/prettier/index.d.ts:46
ChangeCounts
ChangeCounts: { a: number ; b: number }
Defined in node_modules/jest-diff/build/printDiffs.d.ts:13
Class
Defined in node_modules/@babel/types/lib/index.d.ts:1599
ClassDecorator
ClassDecorator: <TFunction>( target: TFunction ) => TFunction | void
Defined in node_modules/typescript/lib/lib.es5.d.ts:1414
Type declaration
<TFunction>( target: TFunction ) : TFunction | void
Type parameters
Parameters
Returns TFunction | void
Colors
Colors: { comment: { close: string ; open: string } ; content: { close: string ; open: string } ; prop: { close: string ; open: string } ; tag: { close: string ; open: string } ; value: { close: string ; open: string } }
Defined in node_modules/pretty-format/build/types.d.ts:7
Type declaration
comment: { close: string ; open: string }
close: string
open: string
content: { close: string ; open: string }
close: string
open: string
prop: { close: string ; open: string }
close: string
open: string
tag: { close: string ; open: string }
close: string
open: string
value: { close: string ; open: string }
close: string
open: string
Comment
Defined in node_modules/@babel/types/lib/index.d.ts:20
CommentTypeShorthand
CommentTypeShorthand: "leading" | "inner" | "trailing"
Defined in node_modules/@babel/types/lib/index.d.ts:2496
CompletionStatement
Defined in node_modules/@babel/types/lib/index.d.ts:1577
Conditional
Defined in node_modules/@babel/types/lib/index.d.ts:1578
Config
Config
: { callToJSON
: boolean ; colors
: Colors ; escapeRegex
: boolean ; escapeString
: boolean ; indent
: string ; maxDepth
: number ; min
: boolean ; plugins
: Plugins ; printFunctionName
: boolean ; spacingInner
: string ; spacingOuter
: string }
Defined in node_modules/pretty-format/build/types.d.ts:70
Type declaration
callToJSON: boolean
escapeRegex: boolean
escapeString: boolean
indent: string
maxDepth: number
min: boolean
printFunctionName: boolean
spacingInner: string
spacingOuter: string
ConfigFunction
Defined in node_modules/@types/babel__core/index.d.ts:751
ConstructorParameters
ConstructorParameters<T>: T extends {} ? P : never
Defined in node_modules/typescript/lib/lib.es5.d.ts:1519
Type parameters
CopyFilterAsync
Copy
FilterAsync: ( src: string , dest: string ) => Promise < boolean >
Defined in node_modules/@types/fs-extra/index.d.ts:287
Type declaration
( src: string , dest: string ) : Promise < boolean >
Parameters
Returns Promise < boolean >
CopyFilterSync
CopyFilterSync: ( src: string , dest: string ) => boolean
Defined in node_modules/@types/fs-extra/index.d.ts:286
Type declaration
( src: string , dest: string ) : boolean
Parameters
Returns boolean
CustomParser
Defined in node_modules/@types/prettier/index.d.ts:48
Type declaration
Parameters
text: string
options: Options
Returns AST
Declaration
Defined in node_modules/@babel/types/lib/index.d.ts:1587
DefaultTemplateBuilder
Defined in node_modules/@types/babel__template/index.d.ts:61
DiffOptions
Diff
Options: { aAnnotation?: undefined | string ; aColor?: DiffOptionsColor ; aIndicator?: undefined | string ; bAnnotation?: undefined | string ; bColor?: DiffOptionsColor ; bIndicator?: undefined | string ; changeColor?: DiffOptionsColor ; changeLineTrailingSpaceColor?: DiffOptionsColor ; commonColor?: DiffOptionsColor ; commonIndicator?: undefined | string ; commonLineTrailingSpaceColor?: DiffOptionsColor ; contextLines?: undefined | number ; emptyFirstOrLastLinePlaceholder?: undefined | string ; expand?: undefined | false | true ; includeChangeCounts?: undefined | false | true ; omitAnnotationLines?: undefined | false | true ; patchColor?: DiffOptionsColor }
Defined in node_modules/jest-diff/build/types.d.ts:8
Type declaration
Optional aAnnotation?: undefined | string
Optional aIndicator?: undefined | string
Optional bAnnotation?: undefined | string
Optional bIndicator?: undefined | string
Optional changeLineTrailingSpaceColor?: DiffOptionsColor
Optional commonIndicator?: undefined | string
Optional commonLineTrailingSpaceColor?: DiffOptionsColor
Optional contextLines?: undefined | number
Optional emptyFirstOrLastLinePlaceholder?: undefined | string
Optional expand?: undefined | false | true
Optional includeChangeCounts?: undefined | false | true
Optional omitAnnotationLines?: undefined | false | true
DiffOptionsColor
DiffOptionsColor: ( arg: string ) => string
Defined in node_modules/jest-diff/build/types.d.ts:7
Type declaration
Parameters
Returns string
DiffOptionsNormalized
Defined in node_modules/jest-diff/build/types.d.ts:27
Type declaration
aAnnotation: string
aIndicator: string
bAnnotation: string
bIndicator: string
commonIndicator: string
contextLines: number
emptyFirstOrLastLinePlaceholder: string
expand: boolean
includeChangeCounts: boolean
omitAnnotationLines: boolean
Doc
Defined in node_modules/@types/prettier/index.d.ts:11
EnumBody
Defined in node_modules/@babel/types/lib/index.d.ts:1608
EnumMember
Defined in node_modules/@babel/types/lib/index.d.ts:1609
Exclude
Exclude<T, U>: T extends U ? never : T
Defined in node_modules/typescript/lib/lib.es5.d.ts:1494
Type parameters
ExportDeclaration
Defined in node_modules/@babel/types/lib/index.d.ts:1601
Expression
Defined in node_modules/@babel/types/lib/index.d.ts:1570
ExpressionWrapper
Defined in node_modules/@babel/types/lib/index.d.ts:1581
Extract
Extract<T, U>: T extends U ? T : never
Defined in node_modules/typescript/lib/lib.es5.d.ts:1499
Type parameters
ExtractEachCallbackArgs
Extract
EachCallbackArgs<T>: { 1: [ T [ 0 ] ] ; 10: [ T [ 0 ] , T [ 1 ] , T [ 2 ] , T [ 3 ] , T [ 4 ] , T [ 5 ] , T [ 6 ] , T [ 7 ] , T [ 8 ] , T [ 9 ] ] ; 2: [ T [ 0 ] , T [ 1 ] ] ; 3: [ T [ 0 ] , T [ 1 ] , T [ 2 ] ] ; 4: [ T [ 0 ] , T [ 1 ] , T [ 2 ] , T [ 3 ] ] ; 5: [ T [ 0 ] , T [ 1 ] , T [ 2 ] , T [ 3 ] , T [ 4 ] ] ; 6: [ T [ 0 ] , T [ 1 ] , T [ 2 ] , T [ 3 ] , T [ 4 ] , T [ 5 ] ] ; 7: [ T [ 0 ] , T [ 1 ] , T [ 2 ] , T [ 3 ] , T [ 4 ] , T [ 5 ] , T [ 6 ] ] ; 8: [ T [ 0 ] , T [ 1 ] , T [ 2 ] , T [ 3 ] , T [ 4 ] , T [ 5 ] , T [ 6 ] , T [ 7 ] ] ; 9: [ T [ 0 ] , T [ 1 ] , T [ 2 ] , T [ 3 ] , T [ 4 ] , T [ 5 ] , T [ 6 ] , T [ 7 ] , T [ 8 ] ] ; fallback: Array < T extends ReadonlyArray < infer U> ? U : any > } [ T extends Readonly < [ any ] > ? 1 : T extends Readonly < [ any , any ] > ? 2 : T extends Readonly < [ any , any , any ] > ? 3 : T extends Readonly < [ any , any , any , any ] > ? 4 : T extends Readonly < [ any , any , any , any , any ] > ? 5 : T extends Readonly < [ any , any , any , any , any , any ] > ? 6 : T extends Readonly < [ any , any , any , any , any , any , any ] > ? 7 : T extends Readonly < [ any , any , any , any , any , any , any , any ] > ? 8 : T extends Readonly < [ any , any , any , any , any , any , any , any , any ] > ? 9 : T extends Readonly < [ any , any , any , any , any , any , any , any , any , any ] > ? 10 : "fallback" ]
Defined in node_modules/@types/jest/index.d.ts:47
Type parameters
FileParseCallback
Defined in node_modules/@types/babel__core/index.d.ts:486
FileResultCallback
Defined in node_modules/@types/babel__core/index.d.ts:336
Flow
Defined in node_modules/@babel/types/lib/index.d.ts:1603
FlowBaseAnnotation
Defined in node_modules/@babel/types/lib/index.d.ts:1605
FlowDeclaration
Defined in node_modules/@babel/types/lib/index.d.ts:1606
FlowPredicate
Defined in node_modules/@babel/types/lib/index.d.ts:1607
FlowType
Defined in node_modules/@babel/types/lib/index.d.ts:1604
For
Defined in node_modules/@babel/types/lib/index.d.ts:1582
ForXStatement
Defined in node_modules/@babel/types/lib/index.d.ts:1583
FsSymlinkType
FsSymlinkType: "dir" | "file" | "junction"
Defined in node_modules/@types/fs-extra/index.d.ts:290
FunctionParent
Defined in node_modules/@babel/types/lib/index.d.ts:1585
GlobalFunction
Defined in node_modules/@types/lodash/common/lang.d.ts:3
GlobalPartial
Defined in node_modules/@types/lodash/common/common.d.ts:3
Type parameters
HeaderInit
Defined in node_modules/@types/node-fetch/index.d.ts:204
HeadersInit
Headers
Init: Headers | string [] [] | {}
Defined in node_modules/@types/node-fetch/index.d.ts:202
Immutable
Defined in node_modules/@babel/types/lib/index.d.ts:1592
Indent
Indent: ( arg0: string ) => string
Defined in node_modules/pretty-format/build/types.d.ts:29
Type declaration
Parameters
Returns string
InstanceType
InstanceType<T>: T extends {} ? R : any
Defined in node_modules/typescript/lib/lib.es5.d.ts:1529
Type parameters
IteratorResult
Defined in node_modules/typescript/lib/lib.es2015.iterable.d.ts:41
Type parameters
JSX
Defined in node_modules/@babel/types/lib/index.d.ts:1610
LVal
Defined in node_modules/@babel/types/lib/index.d.ts:1589
Literal
Defined in node_modules/@babel/types/lib/index.d.ts:1591
Loop
Defined in node_modules/@babel/types/lib/index.d.ts:1579
MatchPattern
Defined in node_modules/@types/babel__core/index.d.ts:343
Method
Defined in node_modules/@babel/types/lib/index.d.ts:1594
MethodDecorator
Defined in node_modules/typescript/lib/lib.es5.d.ts:1416
Type declaration
Type parameters
Parameters
propertyKey: string | symbol
ModuleDeclaration
Defined in node_modules/@babel/types/lib/index.d.ts:1600
ModuleSpecifier
Defined in node_modules/@babel/types/lib/index.d.ts:1602
NewPlugin
New
Plugin: { serialize: ( val: any , config: Config , indentation: string , depth: number , refs: Refs , printer: Printer ) => string ; test: Test }
Defined in node_modules/pretty-format/build/types.d.ts:85
Type declaration
serialize: ( val: any , config: Config , indentation: string , depth: number , refs: Refs , printer: Printer ) => string
( val: any , config: Config , indentation: string , depth: number , refs: Refs , printer: Printer ) : string
Parameters
val: any
indentation: string
depth: number
Returns string
Node
Node: t.Node
Defined in node_modules/@babel/types/lib/index.d.ts:44
Defined in node_modules/@types/babel__core/index.d.ts:19
Defined in node_modules/@types/istanbul-lib-report/index.d.ts:158
isRoot
Defined in node_modules/@types/istanbul-lib-report/index.d.ts:159
Returns boolean
visit
visit( visitor: Visitor , state: any ) : void
Defined in node_modules/@types/istanbul-lib-report/index.d.ts:160
Parameters
visitor: Visitor
state: any
Returns void
NodePaths
NodePaths<T>: T extends readonly Node [] ? {} : T extends Node ? [ NodePath < T > ] : never
Defined in node_modules/@types/babel__traverse/index.d.ts:212
Type parameters
NonNullable
NonNullable<T>: T extends null | undefined ? never : T
Defined in node_modules/typescript/lib/lib.es5.d.ts:1509
Type parameters
NumberLiteral
Defined in node_modules/@babel/types/lib/index.d.ts:1553
ObjectMember
Defined in node_modules/@babel/types/lib/index.d.ts:1595
OldPlugin
Defined in node_modules/pretty-format/build/types.d.ts:94
Omit
Defined in node_modules/typescript/lib/lib.es5.d.ts:1504
Type parameters
OmitThisParameter
OmitThisParameter<T>: unknown extends ThisParameterType < T > ? T : T extends ( ... args: infer A) => infer R ? ( ... args: A ) => R : T
Defined in node_modules/typescript/lib/lib.es5.d.ts:326
Type parameters
OptionsReceived
Options
Received: { callToJSON?: undefined | false | true ; escapeRegex?: undefined | false | true ; escapeString?: undefined | false | true ; highlight?: undefined | false | true ; indent?: undefined | number ; maxDepth?: undefined | number ; min?: undefined | false | true ; plugins?: Plugins ; printFunctionName?: undefined | false | true ; theme?: ThemeReceived }
Defined in node_modules/pretty-format/build/types.d.ts:58
Type declaration
Optional callToJSON?: undefined | false | true
Optional escapeRegex?: undefined | false | true
Optional escapeString?: undefined | false | true
Optional highlight?: undefined | false | true
Optional indent?: undefined | number
Optional maxDepth?: undefined | number
Optional min?: undefined | false | true
Optional plugins?: Plugins
Optional printFunctionName?: undefined | false | true
ParameterDecorator
Parameter
Decorator: ( target: Object , propertyKey: string | symbol , parameterIndex: number ) => void
Defined in node_modules/typescript/lib/lib.es5.d.ts:1417
Type declaration
( target: Object , propertyKey: string | symbol , parameterIndex: number ) : void
Parameters
propertyKey: string | symbol
parameterIndex: number
Returns void
Parameters
Parameters<T>: T extends ( ... args: infer P) => any ? P : never
Defined in node_modules/typescript/lib/lib.es5.d.ts:1514
Type parameters
ParseResult
Defined in node_modules/@types/babel__core/index.d.ts:20
ParserPlugin
Parser
Plugin: "asyncGenerators" | "bigInt" | "classPrivateMethods" | "classPrivateProperties" | "classProperties" | "decimal" | "decorators" | "decorators-legacy" | "doExpressions" | "dynamicImport" | "estree" | "exportDefaultFrom" | "exportNamespaceFrom" | "flow" | "flowComments" | "functionBind" | "functionSent" | "importMeta" | "jsx" | "logicalAssignment" | "moduleAttributes" | "nullishCoalescingOperator" | "numericSeparator" | "objectRestSpread" | "optionalCatchBinding" | "optionalChaining" | "partialApplication" | "pipelineOperator" | "placeholders" | "privateIn" | "throwExpressions" | "topLevelAwait" | "typescript" | "v8intrinsic" | ParserPluginWithOptions
Defined in node_modules/@babel/parser/typings/babel-parser.d.ts:97
ParserPluginWithOptions
Defined in node_modules/@babel/parser/typings/babel-parser.d.ts:134
Partial
Partial<T>: {}
Defined in node_modules/typescript/lib/lib.es5.d.ts:1459
Type parameters
Pattern
Defined in node_modules/@babel/types/lib/index.d.ts:1598
PatternLike
Defined in node_modules/@babel/types/lib/index.d.ts:1588
Pick
Pick<T, K>: {}
Defined in node_modules/typescript/lib/lib.es5.d.ts:1480
Type parameters
Plugin
Defined in node_modules/pretty-format/build/types.d.ts:98
Defined in node_modules/@types/prettier/index.d.ts:162
Optional defaultOptions
Defined in node_modules/@types/prettier/index.d.ts:167
Optional languages
Defined in node_modules/@types/prettier/index.d.ts:163
Optional options
Defined in node_modules/@types/prettier/index.d.ts:166
Optional parsers
parsers: undefined | {}
Defined in node_modules/@types/prettier/index.d.ts:164
Optional printers
printers: undefined | {}
Defined in node_modules/@types/prettier/index.d.ts:165
PluginItem
Defined in node_modules/@types/babel__core/index.d.ts:603
PluginOptions
PluginOptions: { edgeSpacing: string ; min: boolean ; spacing: string }
Defined in node_modules/@types/babel__core/index.d.ts:599
Defined in node_modules/pretty-format/build/types.d.ts:89
Type declaration
edgeSpacing: string
min: boolean
spacing: string
PluginTarget
PluginTarget: string | object | ( ( ... args: any [] ) => any )
Defined in node_modules/@types/babel__core/index.d.ts:601
Plugins
Defined in node_modules/pretty-format/build/types.d.ts:99
Print
Print: ( arg0: unknown ) => string
Defined in node_modules/pretty-format/build/types.d.ts:31
Type declaration
Parameters
Returns string
Printer
Printer
: ( val
: unknown , config
: Config , indentation
: string , depth
: number , refs
: Refs , hasCalledToJSON
?: undefined | false | true ) => string
Defined in node_modules/pretty-format/build/types.d.ts:83
Defined in node_modules/@types/prettier/index.d.ts:179
Type declaration
( val: unknown , config: Config , indentation: string , depth: number , refs: Refs , hasCalledToJSON?: undefined | false | true ) : string
Parameters
val: unknown
indentation: string
depth: number
Optional hasCalledToJSON: undefined | false | true
Returns string
Optional canAttachComment
canAttachComment: undefined | ( ( node: any ) => boolean )
Defined in node_modules/@types/prettier/index.d.ts:195
Optional embed
embed
: undefined | ( ( path
: FastPath , print
: ( path
: FastPath ) => Doc , textToDoc
: ( text
: string , options
: Options ) => Doc , options
: ParserOptions ) => Doc | null )
Defined in node_modules/@types/prettier/index.d.ts:181
Optional handleComments
handleComments: undefined | { endOfLine?: undefined | ( ( commentNode: any , text: string , options: ParserOptions , ast: any , isLastComment: boolean ) => boolean ) ; ownLine?: undefined | ( ( commentNode: any , text: string , options: ParserOptions , ast: any , isLastComment: boolean ) => boolean ) ; remaining?: undefined | ( ( commentNode: any , text: string , options: ParserOptions , ast: any , isLastComment: boolean ) => boolean ) }
Defined in node_modules/@types/prettier/index.d.ts:198
Optional hasPrettierIgnore
has
PrettierIgnore: undefined | ( ( path: FastPath ) => boolean )
Defined in node_modules/@types/prettier/index.d.ts:194
Optional insertPragma
insertPragma: undefined | ( ( text: string ) => string )
Defined in node_modules/@types/prettier/index.d.ts:187
Optional massageAstNode
massageAstNode: undefined | ( ( node: any , newNode: any , parent: any ) => any )
Defined in node_modules/@types/prettier/index.d.ts:193
Optional printComments
print
Comments: undefined | ( ( path: FastPath , print: ( path: FastPath ) => Doc , options: ParserOptions , needsSemi: boolean ) => Doc )
Defined in node_modules/@types/prettier/index.d.ts:197
Optional willPrintOwnComments
will
PrintOwnComments: undefined | ( ( path: FastPath ) => boolean )
Defined in node_modules/@types/prettier/index.d.ts:196
print
Defined in node_modules/@types/prettier/index.d.ts:180
Parameters
Returns Doc
Private
Defined in node_modules/@babel/types/lib/index.d.ts:1611
PromiseConstructorLike
PromiseConstructorLike: {}
Defined in node_modules/typescript/lib/lib.es5.d.ts:1419
Property
Defined in node_modules/@babel/types/lib/index.d.ts:1596
PropertyDecorator
Property
Decorator: ( target: Object , propertyKey: string | symbol ) => void
Defined in node_modules/typescript/lib/lib.es5.d.ts:1415
Type declaration
( target: Object , propertyKey: string | symbol ) : void
Parameters
propertyKey: string | symbol
Returns void
PropertyKey
PropertyKey: string | number | symbol
Defined in node_modules/typescript/lib/lib.es5.d.ts:105
PublicReplacements
PublicReplacements: {} | any []
Defined in node_modules/@types/babel__template/index.d.ts:53
Pureish
Defined in node_modules/@babel/types/lib/index.d.ts:1586
RGB
RGB: [ number , number , number ]
Defined in node_modules/@types/color-name/index.d.ts:12
Readonly
Readonly<T>: {}
Defined in node_modules/typescript/lib/lib.es5.d.ts:1473
Type parameters
Record
Record<K, T>: {}
Defined in node_modules/typescript/lib/lib.es5.d.ts:1487
Type parameters
Refs
Defined in node_modules/pretty-format/build/types.d.ts:30
RegexLiteral
Defined in node_modules/@babel/types/lib/index.d.ts:1558
ReportType
Defined in node_modules/@types/istanbul-reports/index.d.ts:30
RequestCache
RequestCache: "default" | "force-cache" | "no-cache" | "no-store" | "only-if-cached" | "reload"
Defined in node_modules/@types/node-fetch/index.d.ts:102
RequestContext
RequestContext: "audio" | "beacon" | "cspreport" | "download" | "embed" | "eventsource" | "favicon" | "fetch" | "font" | "form" | "frame" | "hyperlink" | "iframe" | "image" | "imageset" | "import" | "internal" | "location" | "manifest" | "object" | "ping" | "plugin" | "prefetch" | "script" | "serviceworker" | "sharedworker" | "style" | "subresource" | "track" | "video" | "worker" | "xmlhttprequest" | "xslt"
Defined in node_modules/@types/node-fetch/index.d.ts:64
RequestCredentials
RequestCredentials: "omit" | "include" | "same-origin"
Defined in node_modules/@types/node-fetch/index.d.ts:100
RequestInfo
Defined in node_modules/@types/node-fetch/index.d.ts:212
RequestMode
RequestMode: "cors" | "no-cors" | "same-origin"
Defined in node_modules/@types/node-fetch/index.d.ts:98
RequestRedirect
RequestRedirect: "error" | "follow" | "manual"
Defined in node_modules/@types/node-fetch/index.d.ts:99
Required
Required<T>: {}
Defined in node_modules/typescript/lib/lib.es5.d.ts:1466
Type parameters
ResponseType
ResponseType: "basic" | "cors" | "default" | "error" | "opaque" | "opaqueredirect"
Defined in node_modules/@types/node-fetch/index.d.ts:181
RestProperty
Defined in node_modules/@babel/types/lib/index.d.ts:1563
ReturnType
ReturnType<T>: T extends ( ... args: any ) => infer R ? R : any
Defined in node_modules/typescript/lib/lib.es5.d.ts:1524
Type parameters
Scopable
Defined in node_modules/@babel/types/lib/index.d.ts:1572
SimpleCacheCallback
SimpleCacheCallback<T>: ( ) => T
Defined in node_modules/@types/babel__core/index.d.ts:727
Type parameters
SimpleCacheKey
SimpleCacheKey: string | boolean | number | null | undefined
Defined in node_modules/@types/babel__core/index.d.ts:726
SpreadProperty
Defined in node_modules/@babel/types/lib/index.d.ts:1568
Statement
Defined in node_modules/@babel/types/lib/index.d.ts:1575
Summarizers
Summarizers: "flat" | "nested" | "pkg" | "defaultSummarizer"
Defined in node_modules/@types/istanbul-lib-report/index.d.ts:28
SupportOptionValue
SupportOptionValue: number | boolean | string
Defined in node_modules/@types/prettier/index.d.ts:366
SymlinkType
SymlinkType: "dir" | "file"
Defined in node_modules/@types/fs-extra/index.d.ts:289
TSBaseType
Defined in node_modules/@babel/types/lib/index.d.ts:1614
TSEntityName
Defined in node_modules/@babel/types/lib/index.d.ts:1590
TSType
Defined in node_modules/@babel/types/lib/index.d.ts:1613
TSTypeElement
Defined in node_modules/@babel/types/lib/index.d.ts:1612
Terminatorless
Defined in node_modules/@babel/types/lib/index.d.ts:1576
Test
Test: ( arg0: any ) => boolean
Defined in node_modules/pretty-format/build/types.d.ts:84
Type declaration
Parameters
Returns boolean
Theme
Theme: { comment: string ; content: string ; prop: string ; tag: string ; value: string }
Defined in node_modules/pretty-format/build/types.d.ts:32
Type declaration
comment: string
content: string
prop: string
tag: string
value: string
ThemeReceived
ThemeReceived: { comment?: undefined | string ; content?: undefined | string ; prop?: undefined | string ; tag?: undefined | string ; value?: undefined | string }
Defined in node_modules/pretty-format/build/types.d.ts:39
Type declaration
Optional comment?: undefined | string
Optional content?: undefined | string
Optional prop?: undefined | string
Optional tag?: undefined | string
Optional value?: undefined | string
ThisParameterType
ThisParameterType<T>: T extends ( this: infer U, ... args: any [] ) => any ? U : unknown
Defined in node_modules/typescript/lib/lib.es5.d.ts:321
Type parameters
TraversalAncestors
Traversal
Ancestors: ReadonlyArray < { index?: undefined | number ; key: string ; node: Node } >
Defined in node_modules/@babel/types/lib/index.d.ts:2550
TraversalHandler
Defined in node_modules/@babel/types/lib/index.d.ts:2555
Type parameters
TraversalHandlers
Defined in node_modules/@babel/types/lib/index.d.ts:2558
Type parameters
UnaryLike
Defined in node_modules/@babel/types/lib/index.d.ts:1597
UserWhitespacable
Defined in node_modules/@babel/types/lib/index.d.ts:1593
VisitNode
Defined in node_modules/@types/babel__traverse/index.d.ts:203
Type parameters
VisitNodeFunction
Visit
NodeFunction<S, P>: ( this: S , path: NodePath < P > , state: S ) => void
Defined in node_modules/@types/babel__traverse/index.d.ts:205
Type parameters
Type declaration
( this: S , path: NodePath < P > , state: S ) : void
Visitor
Defined in node_modules/@types/babel__traverse/index.d.ts:195
Defined in node_modules/@types/istanbul-lib-report/index.d.ts:180
Type parameters
onDetail
onDetail( root: N , state: any ) : void
Defined in node_modules/@types/istanbul-lib-report/index.d.ts:183
Parameters
Returns void
onEnd
onEnd( root: N , state: any ) : void
Defined in node_modules/@types/istanbul-lib-report/index.d.ts:185
Parameters
Returns void
onStart
onStart( root: N , state: any ) : void
Defined in node_modules/@types/istanbul-lib-report/index.d.ts:181
Parameters
Returns void
onSummary
onSummary( root: N , state: any ) : void
Defined in node_modules/@types/istanbul-lib-report/index.d.ts:182
Parameters
Returns void
onSummaryEnd
onSummaryEnd( root: N , state: any ) : void
Defined in node_modules/@types/istanbul-lib-report/index.d.ts:184
Parameters
Returns void
Watermark
Watermark: [ number , number ]
Defined in node_modules/@types/istanbul-lib-report/index.d.ts:149
While
Defined in node_modules/@babel/types/lib/index.d.ts:1580
Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved.
This source code is licensed under the MIT license found in the LICENSE file in the root directory of this source tree.