@basetime/a2w-api-ts
Version:
Client library that communicates with the addtowallet API.
17 lines (16 loc) • 431 B
TypeScript
import { z } from 'zod';
/**
* Schema for a snippet library.
*/
export declare const SnippetLibrarySchema: z.ZodObject<{
id: z.ZodString;
name: z.ZodString;
description: z.ZodString;
code: z.ZodString;
packages: z.ZodArray<z.ZodString>;
organization: z.ZodString;
}, z.core.$loose>;
/**
* Entity for the snippetLibraries collection.
*/
export type SnippetLibrary = z.infer<typeof SnippetLibrarySchema>;