src/app/shared/interfaces/time.interface.ts
A time interface just for documentation purpose
Properties |
Methods |
|
| Optional foo |
foo()
|
|
interface method
Example :
Returns :
string
|
| zone |
zone:
|
Type : string
|
|
interface property |
export interface TimeInterface {
/**
* @example
* interface property
*/
zone: string;
/**
* @example
* interface method
*/
foo?(): string;
}