You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Interfaces.ts 146B

12345678
  1. export interface Initializable {
  2. initialize: () => void
  3. }
  4. export interface AsyncInitializable {
  5. initialize: () => void | Promise<void>
  6. }