src/app/shared/models/tidi.model.ts
The tidi class
Properties |
Methods |
Accessors |
| completed |
Type : boolean
|
|
Defined in src/app/shared/models/tidi.model.ts:10
|
| afunc |
afunc(a: string, b: string)
|
|
Defined in src/app/shared/models/tidi.model.ts:11
|
|
Returns :
literal type | null
|
| emailAddress | ||||
getemailAddress()
|
||||
|
Defined in src/app/shared/models/tidi.model.ts:18
|
||||
|
Parameters :
Returns :
string
|
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';
}
}