mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:29:30 +08:00
22 lines
No EOL
615 B
Text
22 lines
No EOL
615 B
Text
declare enum ScopeType {
|
|
block = "block",
|
|
catch = "catch",
|
|
class = "class",
|
|
classFieldInitializer = "class-field-initializer",
|
|
classStaticBlock = "class-static-block",
|
|
conditionalType = "conditionalType",
|
|
for = "for",
|
|
function = "function",
|
|
functionExpressionName = "function-expression-name",
|
|
functionType = "functionType",
|
|
global = "global",
|
|
mappedType = "mappedType",
|
|
module = "module",
|
|
switch = "switch",
|
|
tsEnum = "tsEnum",
|
|
tsModule = "tsModule",
|
|
type = "type",
|
|
with = "with"
|
|
}
|
|
export { ScopeType };
|
|
//# sourceMappingURL=ScopeType.d.ts.map |