mirror of
https://github.com/Funkoala14/knowledgebase_law.git
synced 2025-06-08 22:08:16 +08:00
9 lines
271 B
TypeScript
9 lines
271 B
TypeScript
|
/**
|
||
|
* @param {State} base
|
||
|
* @param {Options} extension
|
||
|
* @returns {State}
|
||
|
*/
|
||
|
export function configure(base: State, extension: Options): State;
|
||
|
import type { State } from './types.js';
|
||
|
import type { Options } from './types.js';
|
||
|
//# sourceMappingURL=configure.d.ts.map
|