UNPKG

outsystems-ui

Version:
13 lines (12 loc) 342 B
// eslint-disable-next-line @typescript-eslint/no-unused-vars namespace OSFramework.OSUI.Interface { /** * Defines the interface for objects that going to callback OutSystems * * @export * @interface ICallback */ export interface ICallback { registerCallback(callback: GlobalCallbacks.OSGeneric, eventName?: string): void; } }