@elbwalker/destination-web-api
Version:
API web destination for walkerOS
27 lines (20 loc) • 609 B
TypeScript
import { Mapping } from '@elbwalker/types';
declare function entity_action$1(): string;
declare namespace events {
export { entity_action$1 as entity_action };
}
interface CustomEvent {
}
type EventConfig = Mapping.EventConfig<CustomEvent>;
declare const entity_action: EventConfig;
declare const config: {
entity: {
action: EventConfig;
};
};
declare const mapping_config: typeof config;
declare const mapping_entity_action: typeof entity_action;
declare namespace mapping {
export { mapping_config as config, mapping_entity_action as entity_action };
}
export { events, mapping };