interface EntityApi<T> {
    all(): Promise<T[]>;
    get(...list: string[]): Promise<T | T[]>;
}

Type Parameters

  • T

Implemented by

Methods

Methods