UNPKG

clwoz-models

Version:
14 lines (13 loc) 439 B
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ export interface IOptions { fallbackToOriginal: boolean; preserveOptionalNodeWrappingCharacters: boolean; } declare function serialize(value: any, entityValuesMap: Map<string, string>, userOptions?: Partial<IOptions>): string; declare const _default: { serialize: typeof serialize; }; export default _default;