mirror of
https://github.com/CharaChorder/DeviceManager.git
synced 2026-01-19 16:32:58 +00:00
8 lines
174 B
TypeScript
8 lines
174 B
TypeScript
import { expectType } from 'tsd';
|
|
import rfdc = require('.');
|
|
|
|
const clone = rfdc();
|
|
|
|
expectType<number>(clone(5));
|
|
expectType<{ lorem: string }>(clone({ lorem: "ipsum" }));
|