mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-23 20:26:28 +00:00
11 lines
181 B
TypeScript
11 lines
181 B
TypeScript
|
declare namespace rfdc {
|
||
|
interface Options {
|
||
|
proto?: boolean;
|
||
|
circles?: boolean;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
declare function rfdc(options?: rfdc.Options): <T>(input: T) => T;
|
||
|
|
||
|
export = rfdc;
|