plist2
Version:
Converts between .tmLanguage(.plist), .json, .cson and .yaml formats
22 lines (21 loc) • 841 B
TypeScript
export * from "./__types__";
export { cson2js } from "./__types__";
export { cson2json } from "./__types__";
export { cson2plist } from "./__types__";
export { cson2yaml } from "./__types__";
export { js2cson } from "./__types__";
export { js2json } from "./__types__";
export { js2plist } from "./__types__";
export { js2yaml } from "./__types__";
export { json2cson } from "./__types__";
export { json2js } from "./__types__";
export { json2plist } from "./__types__";
export { json2yaml } from "./__types__";
export { plist2cson } from "./__types__";
export { plist2js } from "./__types__";
export { plist2json } from "./__types__";
export { plist2yaml } from "./__types__";
export { yaml2cson } from "./__types__";
export { yaml2js } from "./__types__";
export { yaml2json } from "./__types__";
export { yaml2plist } from "./__types__";