persona-community-5/.pnpm-store/v3/files/4c/f37504faceb935dcb6871c231077f83d01c7b8cbe4316d68cf2d64f5939cb59c3a7ee049b73fccd829a0e7fa0e772ea74ecd9dc8eaa1ae7b451c1c3a8c77d6
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
394 B
Plaintext

// Standard YAML's Core schema.
// http://www.yaml.org/spec/1.2/spec.html#id2804923
//
// NOTE: JS-YAML does not support schema-specific tag resolution restrictions.
// So, Core schema has no distinctions from JSON schema is JS-YAML.
'use strict';
declare function require(n:string):any
import {Schema} from '../schema';
export = new Schema({
include: [
require('./json')
]
});