prasi-bun/app/srv/ws/sync/actions/comp_new.ts

10 lines
203 B
TypeScript

import { SAction } from "../actions";
import { SyncConnection } from "../type";
export const comp_new: SAction["comp"]["new"] = async function (
this: SyncConnection,
arg
) {
console.log(arg);
};