https://devblogs.microsoft.com/typescript/announcing-typescript-4-7-beta/#instantiation-expressions
this can probably be used to deprecate the create functions. eg.
before:
const isString = createIs<string>()
if (isString(value)) {
//...
}
after:
const isString = is<string>;
if (isString(value)) {
//...
}
https://devblogs.microsoft.com/typescript/announcing-typescript-4-7-beta/#instantiation-expressions
this can probably be used to deprecate the
createfunctions. eg.before:
after: