UNPKG

@enonic/js-utils

Version:
12 lines (8 loc) 243 B
import type { Node, NodeIndexConfigParams, } from '/lib/xp/node'; export type RepoNode = Omit<Node,'_indexConfig'> & { _indexConfig: NodeIndexConfigParams; } export type RepoNodeWithData<Data = Record<string, unknown>> = RepoNode & Data