mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 19:49:29 +08:00
21 lines
No EOL
1.3 KiB
Text
21 lines
No EOL
1.3 KiB
Text
import { BlockScope } from './BlockScope';
|
|
import { CatchScope } from './CatchScope';
|
|
import { ClassFieldInitializerScope } from './ClassFieldInitializerScope';
|
|
import { ClassStaticBlockScope } from './ClassStaticBlockScope';
|
|
import { ClassScope } from './ClassScope';
|
|
import { ConditionalTypeScope } from './ConditionalTypeScope';
|
|
import { ForScope } from './ForScope';
|
|
import { FunctionExpressionNameScope } from './FunctionExpressionNameScope';
|
|
import { FunctionScope } from './FunctionScope';
|
|
import { FunctionTypeScope } from './FunctionTypeScope';
|
|
import { GlobalScope } from './GlobalScope';
|
|
import { MappedTypeScope } from './MappedTypeScope';
|
|
import { ModuleScope } from './ModuleScope';
|
|
import { SwitchScope } from './SwitchScope';
|
|
import { TSEnumScope } from './TSEnumScope';
|
|
import { TSModuleScope } from './TSModuleScope';
|
|
import { TypeScope } from './TypeScope';
|
|
import { WithScope } from './WithScope';
|
|
declare type Scope = BlockScope | CatchScope | ClassScope | ClassFieldInitializerScope | ClassStaticBlockScope | ConditionalTypeScope | ForScope | FunctionExpressionNameScope | FunctionScope | FunctionTypeScope | GlobalScope | MappedTypeScope | ModuleScope | SwitchScope | TSEnumScope | TSModuleScope | TypeScope | WithScope;
|
|
export { Scope };
|
|
//# sourceMappingURL=Scope.d.ts.map |