mirror of
https://github.com/nestjs/nest.git
synced 2026-02-21 23:11:44 +00:00
10 lines
104 B
TypeScript
10 lines
104 B
TypeScript
export enum Scope {
|
|
DEFAULT,
|
|
REQUEST,
|
|
LAZY,
|
|
}
|
|
|
|
export interface ScopeOptions {
|
|
scope?: Scope;
|
|
}
|