Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
16 lines
569 B
Plaintext
16 lines
569 B
Plaintext
import type ExtractorCodec from './ExtractorCodec.js';
|
|
import type { MessagesFormat } from './types.js';
|
|
declare const formats: {
|
|
json: {
|
|
codec: () => Promise<typeof import("./codecs/JSONCodec.js")>;
|
|
extension: ".json";
|
|
};
|
|
po: {
|
|
codec: () => Promise<typeof import("./codecs/POCodec.js")>;
|
|
extension: ".po";
|
|
};
|
|
};
|
|
export default formats;
|
|
export declare function getFormatExtension(format: MessagesFormat): string;
|
|
export declare function resolveCodec(format: MessagesFormat, projectRoot: string): Promise<ExtractorCodec>;
|