feat: add method modifier enum to schematics

pull/5137/head
Arman Ozak 5 years ago
parent 05a1a78f93
commit 2b3b5d29db

@ -1,3 +1,4 @@
export * from './binding-source-id';
export * from './exception';
export * from './import-keyword';
export * from './method-modifier';

@ -0,0 +1,6 @@
export enum eMethodModifier {
Public = '',
Private = 'private ',
Async = 'async ',
PrivateAsync = 'private async ',
}
Loading…
Cancel
Save