Skip to content

PathOrLiteral

type PathOrLiteral =
| {
path: string;
}
| {
literal: string | number | boolean | null;
};