@illandril/foundryvtt-types
Version:
Type definitions for the Foundry VTT client, used by Illandril's modules
19 lines (17 loc) • 416 B
TypeScript
declare global {
namespace foundry {
namespace applications {
namespace types {
interface ApplicationRenderOptions {
force?: boolean;
isFirstRender?: boolean;
parts?: string[];
position?: ApplicationPosition;
tab?: string | Record<string, string>;
window?: ApplicationWindowRenderOptions;
}
}
}
}
}
export type {};