本文整理汇总了TypeScript中@glimmer/runtime.templateFactory函数的典型用法代码示例。如果您正苦于以下问题:TypeScript templateFactory函数的具体用法?TypeScript templateFactory怎么用?TypeScript templateFactory使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了templateFactory函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: templateFactory
QUnit.test("generates id if no id is on the serialized template", assert => {
let factory1 = templateFactory(serializedTemplateNoId);
let factory2 = templateFactory(serializedTemplateNoId);
assert.ok(factory1.id, 'is present');
assert.ok(factory2.id, 'is present');
assert.notEqual(factory1.id, factory2.id, 'factories without underlying id create new id per factory');
});
示例2: template
export default function template(json: any) {
const factory = templateFactory<{
moduleName: string;
}, {
owner: Container;
}>(json);
return new WrappedTemplateFactory(factory);
}
示例3:
QUnit.test("can inject per environment things into meta", assert => {
let owner = {};
let factory = templateFactory<TestMeta, OwnerMeta>(serializedTemplate);
let template = factory.create(env.compileOptions, { owner });
assert.strictEqual(template.referer.owner, owner, 'is owner');
assert.deepEqual(template.referer, {
version: 12,
lang: 'es',
moduleName: "template/module/name",
owner
}, 'template has expected meta');
});