-
Notifications
You must be signed in to change notification settings - Fork 620
/
Copy pathindex.ts
26 lines (24 loc) · 905 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
/**
* Some utilities for working with Rush Stack localization files.
*
* @packageDocumentation
*/
export type {
ILocalizationFile,
ILocalizedString,
IPseudolocaleOptions,
IParseFileOptions,
IgnoreStringFunction
} from './interfaces';
export { parseLocJson } from './parsers/parseLocJson';
export { parseResJson } from './parsers/parseResJson';
export { parseResx, type IParseResxOptions, type IParseResxOptionsBase } from './parsers/parseResx';
export { parseLocFile, type IParseLocFileOptions, type ParserKind } from './LocFileParser';
export {
type ITypingsGeneratorOptions,
type IInferInterfaceNameExportAsDefaultOptions,
TypingsGenerator
} from './TypingsGenerator';
export { getPseudolocalizer } from './Pseudolocalization';