UNPKG

blogger-feeds

Version:
13 lines (12 loc) 288 B
import { type BuildMutator } from '../../url'; export type Label = string | string[]; interface SearchConf { labels?: Label[]; terms?: string; } declare module '@lib/url' { interface PagedConf extends SearchConf { } } export declare const search: BuildMutator; export {};