UNPKG

@astrauka/wix-code-typescript-wrapper

Version:

Allows to write typescript developing code with Wix Local Editor. Compiles and uploads javascript to Wix.

10 lines (8 loc) 276 B
// Code and type definitions shared among backend and frontend // Gets copied to "src/public/universal", usage in frontend: import { Entity } from "public/universal/entity" export interface TodoItem { id: string; } export function getDefaultId() { return 'default-id'; }