trello-for-wolves
Version:
Node.js wrapper for Trello API...for wolves.
13 lines (12 loc) • 442 B
TypeScript
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>;
}