Is it possible to create a string literal type in AssemblyScript that resembles the type keyword used in TypeScript?
TypeScript example:
export type MyType = 'foo' | 'bar';
Is it possible to create a string literal type in AssemblyScript that resembles the type keyword used in TypeScript?
TypeScript example:
export type MyType = 'foo' | 'bar';
Not currently:
There is an issue open.