UNPKG

trello-for-wolves

Version:
13 lines (12 loc) 442 B
import { TypedFetch, TypeRecord } from "../typeDefs"; import { BaseResource } from "./BaseResource"; /** * Because Trello teams and members are not prefixed differently, we need a way to * distinguish between the two. The `/types` route is how Trello figures out * which is which. * @see https://developers.trello.com/reference#types * @class */ export declare class Type extends BaseResource { getType(): TypedFetch<TypeRecord>; }