class YAML.YAMLSet extends YAMLMap<T, Scalar<null> | null>import { YAML } from "https://deno.land/x/aether@v0.0.3/deps.ts"; const { YAMLSet } = YAML; ConstructorsnewYAMLSet(schema?: Schema)Type ParametersoptionalT = unknownMethodsadd(key: T | Pair<T, Scalar<null> | null> | { key: T; value: Scalar<null> | null; }): voidget(key: unknown, keepPair?: boolean): anyIf keepPair is true, returns the Pair matching key. Otherwise, returns the value of that Pair's key. set(key: T, value: boolean): voiddeprecatedset(key: T, value: null): voidtoJSON(_?: unknown, ctx?: ToJSContext): anytoString(ctx?: StringifyContext,onComment?: () => void,onChompKeep?: () => void,): stringStatic Propertiestag: string