@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
20 lines (19 loc) • 740 B
TypeScript
import type { GetDeviceBrowserStats } from './GetDeviceBrowserStats.js';
export interface GetStatsByDevice {
desktop?: {
[key: string]: GetDeviceBrowserStats;
};
mobile?: {
[key: string]: GetDeviceBrowserStats;
};
tablet?: {
[key: string]: GetDeviceBrowserStats;
};
unknown?: {
[key: string]: GetDeviceBrowserStats;
};
}
export declare function instanceOfGetStatsByDevice(value: object): boolean;
export declare function GetStatsByDeviceFromJSON(json: any): GetStatsByDevice;
export declare function GetStatsByDeviceFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetStatsByDevice;
export declare function GetStatsByDeviceToJSON(value?: GetStatsByDevice | null): any;