9 lines
248 B
TypeScript
9 lines
248 B
TypeScript
|
/**
|
||
|
* @param {State} base
|
||
|
* @param {Options} extension
|
||
|
* @returns {State}
|
||
|
*/
|
||
|
export function configure(base: State, extension: Options): State;
|
||
|
export type Options = import('./types.js').Options;
|
||
|
export type State = import('./types.js').State;
|