@illandril/foundryvtt-types
Version:
Type definitions for the Foundry VTT client, used by Illandril's modules
22 lines (20 loc) • 495 B
TypeScript
declare global {
namespace foundry {
namespace applications {
namespace types {
interface ApplicationWindowConfiguration {
contentClasses?: string[];
contentTag?: string;
controls?: ApplicationHeaderControlsEntry[];
frame?: boolean;
icon?: string | false;
minimizable?: boolean;
positioned?: boolean;
resizable?: boolean;
title?: string;
}
}
}
}
}
export type {};