mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-05-01 16:40:04 +08:00
8 lines
329 B
TypeScript
8 lines
329 B
TypeScript
|
|
import type { StreamUserConfig } from './types/api';
|
||
|
|
import type { StreamConfig } from './types/internal';
|
||
|
|
/**
|
||
|
|
* Makes a new configuration object out of the userConfig object
|
||
|
|
* using default values for the missing configuration properties.
|
||
|
|
*/
|
||
|
|
export declare const makeStreamConfig: (config: StreamUserConfig) => StreamConfig;
|