Permalink
Cannot retrieve contributors at this time
Join GitHub today
GitHub is home to over 28 million developers working together to host and review code, manage projects, and build software together.
Sign up
Switch branches/tags
args-fix
attr-refactor
better-dom-unify
better-references
bytecode-expectations-printer
component-terminology-cleanup-array-buffer
constants-pool-stuff
convert-ember-component-tests
dom-change-list
eager-compile
eager-mode-wip
eager-mode
first-class-blocks
fix-bounds
fix-cycle
fix-empty-html
fix-node-tests
flag-ember-code
implement-block-let
implement-in-element
improve-comment-printing
integrate-with-sht
lower-level-scopes
malloc-are-you-kidding-me
manual-dce
master
more-aot-backup
more-aot
named-blocks
node-bundle-compiler-test
printer-refactor
react
reduce-allocations
release-0-22
release-0-25
release-0-32
release-0-35
render-component-cleanup
runtime-cleanup
serialize-mode
stable-user-helpers
stack-balancing
stack-check
static-bounds
stricter-tslint
tree-shake-ops
update-simple-dom
upgrade-simple-dom
use-glimmer-env
wasm
wip-design
Nothing to show
v0.36.5
v0.36.4
v0.36.3
v0.36.2
v0.36.1
v0.36.0
v0.35.10
v0.35.9
v0.35.8
v0.35.7
v0.35.6
v0.35.5
v0.35.4
v0.35.3
v0.35.2
v0.35.1
v0.35.0
v0.34.8
v0.34.7
v0.34.6
v0.34.5
v0.34.4
v0.34.3
v0.34.2
v0.34.1
v0.34.0
v0.33.7
v0.33.6
v0.33.5
v0.33.4
v0.33.3
v0.33.2
v0.33.1
v0.33.0
v0.32.9
v0.32.8
v0.32.7
v0.32.6
v0.32.5
v0.32.4
v0.32.3
v0.32.2
v0.32.1
v0.32.0
v0.31.0
v0.30.5
v0.30.4
v0.30.3
v0.30.2
v0.30.1
v0.30.0
v0.29.10
v0.29.9
v0.29.8
v0.29.7
v0.29.6
v0.29.5
v0.29.4
v0.29.3
v0.29.2
v0.29.1
v0.29.0
v0.28.3
v0.28.2
v0.28.1
v0.28.0
v0.27.0
v0.26.2
v0.26.1
v0.26.0
v0.25.8
v0.25.7
v0.25.6
v0.25.5
v0.25.4
v0.25.3
v0.25.2
v0.25.1
v0.25.0
v0.24.0
v0.24.0-beta.6
v0.24.0-beta.5
v0.24.0-beta.4
v0.24.0-beta.3
v0.24.0-beta.2
v0.24.0-beta.1
v0.24.0-alpha.2
v0.24.0-alpha.1
v0.23.0-alpha.18
v0.23.0-alpha.17
v0.23.0-alpha.16
v0.23.0-alpha.15
v0.23.0-alpha.14
v0.23.0-alpha.13
v0.23.0-alpha.12
v0.23.0-alpha.11
v0.23.0-alpha.10
v0.23.0-alpha.9
v0.23.0-alpha.8
v0.23.0-alpha.7
Nothing to show
Find file
Copy path
Fetching contributors…
| import { TemplateMeta } from '@glimmer/wire-format'; | |
| import { Opaque, Option, Unique } from './core'; | |
| export interface Resolver<Specifier, T extends TemplateMeta = TemplateMeta> { | |
| lookupHelper(name: string, meta: T): Option<Specifier>; | |
| lookupModifier(name: string, meta: T): Option<Specifier>; | |
| lookupComponent(name: string, meta: T): Option<Specifier>; | |
| lookupPartial(name: string, meta: T): Option<Specifier>; | |
| resolve<U>(specifier: Specifier): U; | |
| } |
Copy lines Copy permalink - View git blame
- Open new issue