type stringclasses 7
values | content stringlengths 4 9.55k | repo stringlengths 7 96 | path stringlengths 4 178 | language stringclasses 1
value |
|---|---|---|---|---|
InterfaceDeclaration |
interface Placeholder extends BaseNode {
type: "Placeholder";
expectedNode: "Identifier" | "StringLiteral" | "Expression" | "Statement" | "Declaration" | "BlockStatement" | "ClassBody" | "Pattern";
name: Identifier;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface V8IntrinsicIdentifier extends BaseNode {
type: "V8IntrinsicIdentifier";
name: string;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface ArgumentPlaceholder extends BaseNode {
type: "ArgumentPlaceholder";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface BindExpression extends BaseNode {
type: "BindExpression";
object: Expression;
callee: Expression;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface ImportAttribute extends BaseNode {
type: "ImportAttribute";
key: Identifier | StringLiteral;
value: StringLiteral;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface Decorator extends BaseNode {
type: "Decorator";
expression: Expression;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface DoExpression extends BaseNode {
type: "DoExpression";
body: BlockStatement;
async: boolean;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface ExportDefaultSpecifier extends BaseNode {
type: "ExportDefaultSpecifier";
exported: Identifier;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface RecordExpression extends BaseNode {
type: "RecordExpression";
properties: Array<ObjectProperty | SpreadElement>;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TupleExpression extends BaseNode {
type: "TupleExpression";
elements: Array<Expression | SpreadElement>;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface DecimalLiteral extends BaseNode {
type: "DecimalLiteral";
value: string;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface ModuleExpression extends BaseNode {
type: "ModuleExpression";
body: Program;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TopicReference extends BaseNode {
type: "TopicReference";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface PipelineTopicExpression extends BaseNode {
type: "PipelineTopicExpression";
expression: Expression;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface PipelineBareFunction extends BaseNode {
type: "PipelineBareFunction";
callee: Expression;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface PipelinePrimaryTopicReference extends BaseNode {
type: "PipelinePrimaryTopicReference";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSParameterProperty extends BaseNode {
type: "TSParameterProperty";
parameter: Identifier | AssignmentPattern;
accessibility?: "public" | "private" | "protected" | null;
decorators?: Array<Decorator> | null;
override?: boolean | null;
readonly?: boolean | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSDeclareFunction extends BaseNode {
type: "TSDeclareFunction";
id?: Identifier | null;
typeParameters?: TSTypeParameterDeclaration | Noop | null;
params: Array<Identifier | Pattern | RestElement>;
returnType?: TSTypeAnnotation | Noop | null;
async?: boolean;
declare?: boolean | n... | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSDeclareMethod extends BaseNode {
type: "TSDeclareMethod";
decorators?: Array<Decorator> | null;
key: Identifier | StringLiteral | NumericLiteral | Expression;
typeParameters?: TSTypeParameterDeclaration | Noop | null;
params: Array<Identifier | Pattern | RestElement | TSParameterPropert... | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSQualifiedName extends BaseNode {
type: "TSQualifiedName";
left: TSEntityName;
right: Identifier;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSCallSignatureDeclaration extends BaseNode {
type: "TSCallSignatureDeclaration";
typeParameters?: TSTypeParameterDeclaration | null;
parameters: Array<Identifier | RestElement>;
typeAnnotation?: TSTypeAnnotation | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSConstructSignatureDeclaration extends BaseNode {
type: "TSConstructSignatureDeclaration";
typeParameters?: TSTypeParameterDeclaration | null;
parameters: Array<Identifier | RestElement>;
typeAnnotation?: TSTypeAnnotation | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSPropertySignature extends BaseNode {
type: "TSPropertySignature";
key: Expression;
typeAnnotation?: TSTypeAnnotation | null;
initializer?: Expression | null;
computed?: boolean | null;
kind: "get" | "set";
optional?: boolean | null;
readonly?: boolean | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSMethodSignature extends BaseNode {
type: "TSMethodSignature";
key: Expression;
typeParameters?: TSTypeParameterDeclaration | null;
parameters: Array<Identifier | RestElement>;
typeAnnotation?: TSTypeAnnotation | null;
computed?: boolean | null;
kind: "method" | "get" | "set";
... | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSIndexSignature extends BaseNode {
type: "TSIndexSignature";
parameters: Array<Identifier>;
typeAnnotation?: TSTypeAnnotation | null;
readonly?: boolean | null;
static?: boolean | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSAnyKeyword extends BaseNode {
type: "TSAnyKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSBooleanKeyword extends BaseNode {
type: "TSBooleanKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSBigIntKeyword extends BaseNode {
type: "TSBigIntKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSIntrinsicKeyword extends BaseNode {
type: "TSIntrinsicKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSNeverKeyword extends BaseNode {
type: "TSNeverKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSNullKeyword extends BaseNode {
type: "TSNullKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSNumberKeyword extends BaseNode {
type: "TSNumberKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSObjectKeyword extends BaseNode {
type: "TSObjectKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSStringKeyword extends BaseNode {
type: "TSStringKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSSymbolKeyword extends BaseNode {
type: "TSSymbolKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSUndefinedKeyword extends BaseNode {
type: "TSUndefinedKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSUnknownKeyword extends BaseNode {
type: "TSUnknownKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSVoidKeyword extends BaseNode {
type: "TSVoidKeyword";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSThisType extends BaseNode {
type: "TSThisType";
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSFunctionType extends BaseNode {
type: "TSFunctionType";
typeParameters?: TSTypeParameterDeclaration | null;
parameters: Array<Identifier | RestElement>;
typeAnnotation?: TSTypeAnnotation | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSConstructorType extends BaseNode {
type: "TSConstructorType";
typeParameters?: TSTypeParameterDeclaration | null;
parameters: Array<Identifier | RestElement>;
typeAnnotation?: TSTypeAnnotation | null;
abstract?: boolean | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSTypeReference extends BaseNode {
type: "TSTypeReference";
typeName: TSEntityName;
typeParameters?: TSTypeParameterInstantiation | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSTypePredicate extends BaseNode {
type: "TSTypePredicate";
parameterName: Identifier | TSThisType;
typeAnnotation?: TSTypeAnnotation | null;
asserts?: boolean | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSTypeQuery extends BaseNode {
type: "TSTypeQuery";
exprName: TSEntityName | TSImportType;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSTypeLiteral extends BaseNode {
type: "TSTypeLiteral";
members: Array<TSTypeElement>;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSArrayType extends BaseNode {
type: "TSArrayType";
elementType: TSType;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSTupleType extends BaseNode {
type: "TSTupleType";
elementTypes: Array<TSType | TSNamedTupleMember>;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSOptionalType extends BaseNode {
type: "TSOptionalType";
typeAnnotation: TSType;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSRestType extends BaseNode {
type: "TSRestType";
typeAnnotation: TSType;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSNamedTupleMember extends BaseNode {
type: "TSNamedTupleMember";
label: Identifier;
elementType: TSType;
optional: boolean;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSUnionType extends BaseNode {
type: "TSUnionType";
types: Array<TSType>;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSIntersectionType extends BaseNode {
type: "TSIntersectionType";
types: Array<TSType>;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSConditionalType extends BaseNode {
type: "TSConditionalType";
checkType: TSType;
extendsType: TSType;
trueType: TSType;
falseType: TSType;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSInferType extends BaseNode {
type: "TSInferType";
typeParameter: TSTypeParameter;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSParenthesizedType extends BaseNode {
type: "TSParenthesizedType";
typeAnnotation: TSType;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSTypeOperator extends BaseNode {
type: "TSTypeOperator";
typeAnnotation: TSType;
operator: string;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSIndexedAccessType extends BaseNode {
type: "TSIndexedAccessType";
objectType: TSType;
indexType: TSType;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSMappedType extends BaseNode {
type: "TSMappedType";
typeParameter: TSTypeParameter;
typeAnnotation?: TSType | null;
nameType?: TSType | null;
optional?: boolean | null;
readonly?: boolean | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSLiteralType extends BaseNode {
type: "TSLiteralType";
literal: NumericLiteral | StringLiteral | BooleanLiteral | BigIntLiteral | UnaryExpression;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSExpressionWithTypeArguments extends BaseNode {
type: "TSExpressionWithTypeArguments";
expression: TSEntityName;
typeParameters?: TSTypeParameterInstantiation | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSInterfaceDeclaration extends BaseNode {
type: "TSInterfaceDeclaration";
id: Identifier;
typeParameters?: TSTypeParameterDeclaration | null;
extends?: Array<TSExpressionWithTypeArguments> | null;
body: TSInterfaceBody;
declare?: boolean | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSInterfaceBody extends BaseNode {
type: "TSInterfaceBody";
body: Array<TSTypeElement>;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSTypeAliasDeclaration extends BaseNode {
type: "TSTypeAliasDeclaration";
id: Identifier;
typeParameters?: TSTypeParameterDeclaration | null;
typeAnnotation: TSType;
declare?: boolean | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSAsExpression extends BaseNode {
type: "TSAsExpression";
expression: Expression;
typeAnnotation: TSType;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSTypeAssertion extends BaseNode {
type: "TSTypeAssertion";
typeAnnotation: TSType;
expression: Expression;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSEnumDeclaration extends BaseNode {
type: "TSEnumDeclaration";
id: Identifier;
members: Array<TSEnumMember>;
const?: boolean | null;
declare?: boolean | null;
initializer?: Expression | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSEnumMember extends BaseNode {
type: "TSEnumMember";
id: Identifier | StringLiteral;
initializer?: Expression | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSModuleDeclaration extends BaseNode {
type: "TSModuleDeclaration";
id: Identifier | StringLiteral;
body: TSModuleBlock | TSModuleDeclaration;
declare?: boolean | null;
global?: boolean | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSModuleBlock extends BaseNode {
type: "TSModuleBlock";
body: Array<Statement>;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSImportType extends BaseNode {
type: "TSImportType";
argument: StringLiteral;
qualifier?: TSEntityName | null;
typeParameters?: TSTypeParameterInstantiation | null;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSImportEqualsDeclaration extends BaseNode {
type: "TSImportEqualsDeclaration";
id: Identifier;
moduleReference: TSEntityName | TSExternalModuleReference;
importKind?: "type" | "value" | null;
isExport: boolean;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSExternalModuleReference extends BaseNode {
type: "TSExternalModuleReference";
expression: StringLiteral;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSNonNullExpression extends BaseNode {
type: "TSNonNullExpression";
expression: Expression;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSExportAssignment extends BaseNode {
type: "TSExportAssignment";
expression: Expression;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSNamespaceExportDeclaration extends BaseNode {
type: "TSNamespaceExportDeclaration";
id: Identifier;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSTypeAnnotation extends BaseNode {
type: "TSTypeAnnotation";
typeAnnotation: TSType;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSTypeParameterInstantiation extends BaseNode {
type: "TSTypeParameterInstantiation";
params: Array<TSType>;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSTypeParameterDeclaration extends BaseNode {
type: "TSTypeParameterDeclaration";
params: Array<TSTypeParameter>;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface TSTypeParameter extends BaseNode {
type: "TSTypeParameter";
constraint?: TSType | null;
default?: TSType | null;
name: string;
} | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
InterfaceDeclaration |
interface Aliases {
Standardized: Standardized;
Expression: Expression;
Binary: Binary;
Scopable: Scopable;
BlockParent: BlockParent;
Block: Block;
Statement: Statement;
Terminatorless: Terminatorless;
CompletionStatement: CompletionStatement;
Conditional: Conditional;
Loop:... | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type Comment = CommentBlock | CommentLine; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type CommentTypeShorthand = "leading" | "inner" | "trailing"; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type Node = AnyTypeAnnotation | ArgumentPlaceholder | ArrayExpression | ArrayPattern | ArrayTypeAnnotation | ArrowFunctionExpression | AssignmentExpression | AssignmentPattern | AwaitExpression | BigIntLiteral | BinaryExpression | BindExpression | BlockStatement | BooleanLiteral | BooleanLiteralTypeAnnotation ... | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type Standardized = ArrayExpression | AssignmentExpression | BinaryExpression | InterpreterDirective | Directive | DirectiveLiteral | BlockStatement | BreakStatement | CallExpression | CatchClause | ConditionalExpression | ContinueStatement | DebuggerStatement | DoWhileStatement | EmptyStatement | ExpressionSt... | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type Expression = ArrayExpression | AssignmentExpression | BinaryExpression | CallExpression | ConditionalExpression | FunctionExpression | Identifier | StringLiteral | NumericLiteral | NullLiteral | BooleanLiteral | RegExpLiteral | LogicalExpression | MemberExpression | NewExpression | ObjectExpression | Sequ... | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type Binary = BinaryExpression | LogicalExpression; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type Scopable = BlockStatement | CatchClause | DoWhileStatement | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Program | ObjectMethod | SwitchStatement | WhileStatement | ArrowFunctionExpression | ClassExpression | ClassDeclaration | ForOfStatement | ClassMethod | ClassPrivateMeth... | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type BlockParent = BlockStatement | CatchClause | DoWhileStatement | ForInStatement | ForStatement | FunctionDeclaration | FunctionExpression | Program | ObjectMethod | SwitchStatement | WhileStatement | ArrowFunctionExpression | ForOfStatement | ClassMethod | ClassPrivateMethod | StaticBlock | TSModuleBlock; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type Block = BlockStatement | Program | TSModuleBlock; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type Statement = BlockStatement | BreakStatement | ContinueStatement | DebuggerStatement | DoWhileStatement | EmptyStatement | ExpressionStatement | ForInStatement | ForStatement | FunctionDeclaration | IfStatement | LabeledStatement | ReturnStatement | SwitchStatement | ThrowStatement | TryStatement | Variabl... | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type Terminatorless = BreakStatement | ContinueStatement | ReturnStatement | ThrowStatement | YieldExpression | AwaitExpression; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type CompletionStatement = BreakStatement | ContinueStatement | ReturnStatement | ThrowStatement; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type Conditional = ConditionalExpression | IfStatement; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type Loop = DoWhileStatement | ForInStatement | ForStatement | WhileStatement | ForOfStatement; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type While = DoWhileStatement | WhileStatement; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type ExpressionWrapper = ExpressionStatement | ParenthesizedExpression | TypeCastExpression; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type For = ForInStatement | ForStatement | ForOfStatement; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type ForXStatement = ForInStatement | ForOfStatement; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type Function = FunctionDeclaration | FunctionExpression | ObjectMethod | ArrowFunctionExpression | ClassMethod | ClassPrivateMethod; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
TypeAliasDeclaration |
declare type FunctionParent = FunctionDeclaration | FunctionExpression | ObjectMethod | ArrowFunctionExpression | ClassMethod | ClassPrivateMethod | StaticBlock; | 0xBronko/theShop | node_modules/@babel/types/lib/index.d.ts | TypeScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.