microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
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 | |
| 11 | declare 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 | |