UNPKG

@theventures/caret

Version:

Unofficial Node.js API client for the Caret HTTP API

13 lines 401 B
import { APIResource } from "../core/resource.js"; import type { Tag, TagCreateParams } from "../types/tags.js"; export declare class Tags extends APIResource { /** * Retrieve a list of all tags in the workspace */ list(): Promise<Tag[]>; /** * Create a new tag in the workspace */ create(params: TagCreateParams): Promise<Tag>; } //# sourceMappingURL=tags.d.ts.map