microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
transitive-dependency-serialize-javascript

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/typings/plist-with-patches/plist-with-patches.d.ts

21lines · modecode

1/**
2 *******************************************************
3 * *
4 * Copyright (C) Microsoft. All rights reserved. *
5 * *
6 *******************************************************
7 */
8
9// Barebones typing for plist-with-patches, added as-needed
10
11declare module "plist-with-patches" {
12 export function parseFileSync(filename: string): any;
13
14 /**
15 * generate an XML plist string from the input object
16 *
17 * @param object obj the object to convert
18 * @return string converted plist
19 */
20 export function build(obj: any): string;
21}
22