chore: primitives

This commit is contained in:
cha0s 2020-06-22 04:26:23 -05:00
parent 1e446a5709
commit 7567efe48e

View File

@ -2,6 +2,7 @@ import {Context} from './context';
export function behaviorContextTypes() {
return {
bool: {},
context: {
add: {
type: 'void',
@ -16,6 +17,10 @@ export function behaviorContextTypes() {
],
},
},
number: {},
stream: {},
string: {},
void: {},
};
}