funkwhale/front/src/shims-funkwhale.d.ts

13 wiersze
241 B
TypeScript

export declare global {
interface Window {
funkwhale: {
registerSoundImplementation: (implementation: SoundImplementation) => void
}
}
type Constructor<T> = {
new(...args: any[]): T;
readonly prototype: T;
}
}