notarize-node-client
Version:
Node.js Client for Notarize.com Business API
17 lines (16 loc) • 459 B
TypeScript
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;
}>;
}