mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 00:19:31 +08:00
15 lines
No EOL
471 B
Text
15 lines
No EOL
471 B
Text
declare enum DefinitionType {
|
|
CatchClause = "CatchClause",
|
|
ClassName = "ClassName",
|
|
FunctionName = "FunctionName",
|
|
ImplicitGlobalVariable = "ImplicitGlobalVariable",
|
|
ImportBinding = "ImportBinding",
|
|
Parameter = "Parameter",
|
|
TSEnumName = "TSEnumName",
|
|
TSEnumMember = "TSEnumMemberName",
|
|
TSModuleName = "TSModuleName",
|
|
Type = "Type",
|
|
Variable = "Variable"
|
|
}
|
|
export { DefinitionType };
|
|
//# sourceMappingURL=DefinitionType.d.ts.map |