UNPKG

passkit-generator

Version:

The easiest way to generate custom Apple Wallet passes in Node.js

12 lines (11 loc) 303 B
import type { Buffer } from "node:buffer"; /** * Reads the model folder contents * * @param model * @returns A promise of an object containing all * filePaths and the relative buffer */ export default function getModelFolderContents(model: string): Promise<{ [filePath: string]: Buffer; }>;