You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
371 B
9 lines
371 B
/// <reference types="node" />
|
|
import { PathOrFileDescriptor } from "fs";
|
|
import { PlistJsObj, StringOrBuffer } from "./types";
|
|
/**
|
|
* Detects the format of the given string or buffer, then attempts to parse the
|
|
* payload using the appropriate tooling.
|
|
*/
|
|
export declare function parse<T = PlistJsObj>(aStringOrBuffer: StringOrBuffer, aFile?: PathOrFileDescriptor): T;
|