@compodoc/compodoc
Version:
The missing documentation tool for your Angular application
22 lines (18 loc) • 496 B
text/typescript
import { Direction } from '../miscellaneous/miscellaneous';
import { LogMethod, LogProperty, LogPropertyWithArgs, LogClass } from '../decorators/log.decorator';
/**
* The tidi class
*/
export class Tidi {
completed: boolean;
afunc(a: string, b: string): { passwordMismatch: boolean } | null {
return true ? { passwordMismatch: true } : null;
}
/**
* @param {string} value
*/
public get emailAddress(): string {
return 'email';
}
}