astro-ghostcms/.pnpm-store/v3/files/fb/c6abd7ed26c2a37af491dd815f0...

102 lines
351 B
Plaintext

import {createCheckers} from "ts-interface-checker";
import OptionsGenTypes from "./Options-gen-types";
const {Options: OptionsChecker} = createCheckers(OptionsGenTypes);
export function validateOptions(options) {
OptionsChecker.strictCheck(options);
}