UNPKG

notarize-node-client

Version:
17 lines (16 loc) 459 B
import type { Notarize, NotarizeOptions } from './'; export declare class TemplateApi { client: Notarize; constructor(client: Notarize, options?: NotarizeOptions); list(limit?: number, offset?: number): Promise<{ success: boolean; totalCount: number; templates: { id: string; name: string; createdAt: string; updatedAt: string; }[]; error?: string; }>; }