This commit is contained in:
Yamozha
2021-04-02 02:24:13 +03:00
parent c23950b545
commit 7256d79e2c
31493 changed files with 3036630 additions and 0 deletions

16
node_modules/@expo/plist/build/index.d.ts generated vendored Normal file
View File

@ -0,0 +1,16 @@
/// <reference types="node" />
import { XMLToStringOptions } from 'xmlbuilder';
import { build } from './build';
import { parse } from './parse';
export declare type PlistValue = string | number | boolean | Date | Buffer | PlistObject | PlistArray;
export interface PlistObject {
readonly [x: string]: PlistValue;
}
export interface PlistArray extends ReadonlyArray<PlistValue> {
}
export declare type PlistBuildOptions = XMLToStringOptions;
declare const _default: {
parse: typeof parse;
build: typeof build;
};
export default _default;