10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
import { TranslationCollection } from '../utils/translation.collection';
|
|
|
|
export interface CompilerInterface {
|
|
|
|
compile(collection: TranslationCollection): string;
|
|
|
|
parse(contents: string): TranslationCollection;
|
|
|
|
}
|