forked from nestjsx/crud
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b42c5ee
commit 5dd8e41
Showing
43 changed files
with
667 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
export declare const FEAUTURE_NAME_METADATA = "NESTJSX_FEAUTURE_NAME_METADATA"; | ||
export declare const ACTION_NAME_METADATA = "NESTJSX_ACTION_NAME_METADATA"; | ||
export declare const BASE_PATH_METADATA = "NESTJSX_BASE_PATH_METADATA"; | ||
export declare const BASE_METHOD_METADATA = "NESTJSX_BASE_METHOD_METADATA"; | ||
export declare const OVERRIDE_METHOD_METADATA = "NESTJSX_OVERRIDE_METHOD_METADATA"; | ||
export declare const CREATE_UPDATE: { | ||
groups: string[]; | ||
}; | ||
export declare const CREATE: { | ||
groups: string[]; | ||
}; | ||
export declare const UPDATE: { | ||
groups: string[]; | ||
}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,7 @@ | ||
export declare const Crud: (dto?: any) => (target: object) => void; | ||
import { ValidationPipeOptions } from '@nestjs/common'; | ||
interface CrudOptions { | ||
validation?: ValidationPipeOptions; | ||
} | ||
export declare const Crud: (dto: any, crudOptions?: CrudOptions) => (target: object) => void; | ||
export declare const Override: (name?: "getManyBase" | "getOneBase" | "createOneBase" | "updateOneBase" | "deleteOneBase") => (target: any, key: any, descriptor: PropertyDescriptor) => PropertyDescriptor; | ||
export {}; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.