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 8aaaf42 commit dcb5deeCopy full SHA for dcb5dee
src/Translate.ts
@@ -1,5 +1,6 @@
1
-import { Translate } from './Primitives';
+import { TextContent, Translate } from './Primitives';
2
3
-export const _ = (value: string): Translate => ({
+export const _ = (value: string, ...args: Array<TextContent>): Translate => ({
4
translate: value,
5
+ args,
6
});
0 commit comments