# Class: Container EFB Instance ### Methods #### loadCss ▸ **loadCss**(`uri`): [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)<`void`> Load stylesheet ##### Parameters {{< table-wrapper >}} | Name | Type | |:------|:---------| | `uri` | `string` | {{< /table-wrapper >}} {{< fake-header "5" "Returns" >}} [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)<`void`> Promise which is resolved when stylesheet is loaded or rejected if an error occur. ------------------------------------------------------------------------ #### loadJs ▸ **loadJs**(`uri`): [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)<`void`> Load script file ##### Parameters {{< table-wrapper >}} | Name | Type | |:------|:---------| | `uri` | `string` | {{< /table-wrapper >}} {{< fake-header "5" "Returns" >}} [`Promise`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Promise)<`void`> Promise which is resolved when script is loaded or rejected if an error occur. ------------------------------------------------------------------------ #### use ▸ **use**<`T`>(`app`, `...options`): `this` Register an app in EFB ##### Type parameters {{< table-wrapper >}} | Name | Type | Description | |:-----|:----------------------------|:-------------------------| | `T` | extends `object` = `object` | App registration options | {{< /table-wrapper >}} ##### Parameters {{< table-wrapper >}} | Name | Type | Description | |:-------------|:--------------------------------------------------------------------------------------------------------|:---------------------------------------------| | `app` | `AppConstructor`<`T`> \| [`App`](app/)<`T`> | The app you wan't to register | | `...options` | [`Partial`](https://www.typescriptlang.org/docs/handbook/utility-types.html#partialtype)<`T`>\[\] | Options you'r app might need when installing | {{< /table-wrapper >}} {{< fake-header "5" "Returns" >}} `this` EFB instance **`Throws`** Throw an error if App install went wrong.