UNPKG

@compodoc/compodoc

Version:

The missing documentation tool for your Angular application

22 lines (18 loc) 496 B
import { Direction } from '../miscellaneous/miscellaneous'; import { LogMethod, LogProperty, LogPropertyWithArgs, LogClass } from '../decorators/log.decorator'; /** * The tidi class */ @LogClass 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'; } }