persona-community-5/.pnpm-store/v3/files/48/c6094a2a6286eef1d87dd9f7522d957611b1730e68981ce3d224d59597e96e28d75dbe66c934adb2cd8bca558c0462ee56e197f804260b3d4ee1a1dcfa1bde
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

29 lines
618 B
Plaintext

// Standard YAML's JSON schema.
// http://www.yaml.org/spec/1.2/spec.html#id2803231
//
// NOTE: JS-YAML does not support schema-specific tag resolution restrictions.
// So, this schema is not such strict as defined in the YAML specification.
// It allows numbers in binary notaion, use `Null` and `NULL` as `null`, etc.
'use strict';
declare function require(n:string):any
import {Schema} from '../schema';
export = new Schema({
include: [
require('./failsafe')
],
implicit: [
require('../type/null'),
require('../type/bool'),
require('../type/int'),
require('../type/float')
]
});