blob: 4077a9e4d51695bf56ce1c9f1fbc5900b7355599 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
declare module "*.svg" {
const content: string;
export default content;
}
declare module "*.png" {
const content: string;
export default content;
}
declare module "*.jpg" {
const content: string;
export default content;
}
declare const SteamClient: {
Apps: {
RegisterForAppDetails(
appId: number,
callback: (details: { strLaunchOptions?: string }) => void
): { unregister: () => void };
SetAppLaunchOptions(appId: number, options: string): void;
};
};
|