persona-community-5/.pnpm-store/v3/files/cf/6b3dde93ee298c932a345b41916a9c0745cbaebc6a96b9a394e0d2ca0ce2944b72ee4803a819173f64f1d83fd57ce144d76353aa2067733e7176cbb5783175
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

22 lines
311 B
Plaintext

// Standard YAML's Failsafe schema.
// http://www.yaml.org/spec/1.2/spec.html#id2802346
'use strict';
declare function require(n:string):any
import {Schema} from '../schema';
export = new Schema({
explicit: [
require('../type/str'),
require('../type/seq'),
require('../type/map')
]
});