Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 27 28 29 30 31 32 33 | 41x 41x 1x 5x 5x 5x 1x 1x | import { YAMLHandler } from '.'; import YAMLContext from '..'; import { Asset, ParsedAsset } from '../../../types'; type ParsedRulesConfigs = ParsedAsset<'rulesConfigs', Asset[]>; async function parse(context: YAMLContext): Promise<ParsedRulesConfigs> { const { rulesConfigs } = context.assets; if (!rulesConfigs) return { rulesConfigs: null }; return { rulesConfigs, }; } async function dump(context: YAMLContext): Promise<ParsedRulesConfigs> { const { rulesConfigs } = context.assets; Iif (!rulesConfigs) return { rulesConfigs: null }; return { rulesConfigs: [], // even if they exist, do not export rulesConfigs as its values cannot be extracted }; } const rulesConfigsHandler: YAMLHandler<ParsedRulesConfigs> = { parse, dump, }; export default rulesConfigsHandler; |