first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

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

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