bplistParser.d.ts 250 B

123456
  1. declare namespace bPlistParser {
  2. type CallbackFunction<T = any> = (error: Error|null, result: [T]) => void
  3. export function parseFile<T = any>(fileNameOrBuffer: string|Buffer, callback?: CallbackFunction<T>): Promise<[T]>
  4. }
  5. export = bPlistParser