UNPKG

@compodoc/compodoc

Version:

The missing documentation tool for your Angular application

24 lines (22 loc) 511 B
import { TimeInterface } from './time.interface'; /** * A class interface just for documentation purpose * ```typescript * class Clock implements ClockInterface { * currentTime: Date; * constructor(h: number, m: number) { } * } * ``` */ interface ClockInterface extends TimeInterface { /** * The current time * @type {Date} * @deprecated The current time property is deprecated */ currentTime: Date; /** * A simple reset method */ reset(): void; }