Function: getSearchPagePathConflictCandidates()
function getSearchPagePathConflictCandidates(
configObjectExpression: Readonly<TSESTree.ObjectExpression>,
programNode: Readonly<TSESTree.Program>
): readonly Readonly<{
owner: string;
routeBasePath: string;
}>[];
Defined in: _internal/search-config.ts:315
Collect route-base-path values that can conflict with a search page path.
Parametersโ
configObjectExpressionโ
Readonly<TSESTree.ObjectExpression>
programNodeโ
Readonly<TSESTree.Program>
Returnsโ
readonly Readonly<{
owner: string;
routeBasePath: string;
}>[]