Website Structure
This commit is contained in:
parent
62812f2090
commit
71f0676a62
22365 changed files with 4265753 additions and 791 deletions
17
Frontend-Learner/node_modules/yaml/dist/schema/Schema.d.ts
generated
vendored
Normal file
17
Frontend-Learner/node_modules/yaml/dist/schema/Schema.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import { MAP, SCALAR, SEQ } from '../nodes/identity';
|
||||
import type { Pair } from '../nodes/Pair';
|
||||
import type { SchemaOptions, ToStringOptions } from '../options';
|
||||
import type { CollectionTag, ScalarTag } from './types';
|
||||
export declare class Schema {
|
||||
compat: Array<CollectionTag | ScalarTag> | null;
|
||||
knownTags: Record<string, CollectionTag | ScalarTag>;
|
||||
name: string;
|
||||
sortMapEntries: ((a: Pair, b: Pair) => number) | null;
|
||||
tags: Array<CollectionTag | ScalarTag>;
|
||||
toStringOptions: Readonly<ToStringOptions> | null;
|
||||
readonly [MAP]: CollectionTag;
|
||||
readonly [SCALAR]: ScalarTag;
|
||||
readonly [SEQ]: CollectionTag;
|
||||
constructor({ compat, customTags, merge, resolveKnownTags, schema, sortMapEntries, toStringDefaults }: SchemaOptions);
|
||||
clone(): Schema;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue