interface TSTypeAliasDeclaration {
    declare?: null | boolean;
    end?: null | number;
    extra?: Record<string, unknown>;
    id: Identifier;
    innerComments?: null | Comment[];
    leadingComments?: null | Comment[];
    loc?: null | SourceLocation;
    range?: [number, number];
    start?: null | number;
    trailingComments?: null | Comment[];
    type: "TSTypeAliasDeclaration";
    typeAnnotation: TSType;
    typeParameters?: null | TSTypeParameterDeclaration;
}

Hierarchy (view full)

Properties

declare?: null | boolean
end?: null | number
extra?: Record<string, unknown>
innerComments?: null | Comment[]
leadingComments?: null | Comment[]
loc?: null | SourceLocation
range?: [number, number]
start?: null | number
trailingComments?: null | Comment[]
type: "TSTypeAliasDeclaration"
typeAnnotation: TSType
typeParameters?: null | TSTypeParameterDeclaration