UNPKG

221 BPlain TextView Raw
1import { Nothing } from '../decorators/nothing.decorator';
2import { LogClass } from '../decorators/log.decorator';
3
4@Nothing()
5export class DoNothing {
6 aname: string;
7 doNothing() {
8 // nothing here
9 }
10}