summaryrefslogtreecommitdiffstats
path: root/cds-ui/designer-client/src/app/modules/feature-modules/packages/package-creation/template-mapping/utils/ParserFactory/Parser.ts
blob: f189a84cae7dd55385f78d96dee6cdafdbe3c176 (plain)
1
2
3
4
export interface Parser {
    variables: Set<string>;
    getVariables(fileContent: string): string[];
}