src/app/shared/models/donothing.model.ts
Properties |
Methods |
| aname |
Type : string
|
|
Defined in src/app/shared/models/donothing.model.ts:6
|
| doNothing |
doNothing()
|
|
Defined in src/app/shared/models/donothing.model.ts:7
|
|
Returns :
void
|
import { Nothing } from '../decorators/nothing.decorator';
import { LogClass } from '../decorators/log.decorator';
@Nothing()
export class DoNothing {
aname: string;
doNothing() {
// nothing here
}
}