mirror of https://github.com/abpframework/abp
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…
Reference in new issue