UNPKG

@uwdata/mosaic-core

Version:

Scalable and extensible linked data views.

10 lines 382 B
/** * Test if a value implements the Activatable interface. * @param value The value to test. * @returns True if value implements Activatable interface. */ export function isActivatable(value) { // @ts-expect-error check properties of unknown value return typeof value?.activate === 'function' && value.activate.length === 0; } //# sourceMappingURL=is-activatable.js.map