We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79713aa commit 9c88020Copy full SHA for 9c88020
packages/sources/datalayer/src/push.ts
@@ -1,4 +1,4 @@
1
-import type { WalkerOS } from '@elbwalker/types';
+import type { Elb } from '@elbwalker/types';
2
import type { Config } from './types';
3
import {
4
clone,
@@ -49,7 +49,7 @@ export function push(config: Config, ...args: unknown[]) {
49
50
if (command) {
51
if (command.name)
52
- config.elb(command.name, command.data as WalkerOS.PushData);
+ config.elb(command.name, command.data as Elb.PushData);
53
} else if (event) {
54
if (event.event) config.elb(event);
55
}
0 commit comments