Skip to content

Commit

Permalink
Update labs/task
Browse files Browse the repository at this point in the history
  • Loading branch information
augustjk committed Aug 31, 2023
1 parent 3f89b3f commit 826eebd
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/lit-dev-content/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@
"dependencies": {
"@lit-labs/motion": "^1.0.1",
"@lit-labs/react": "^1.0.8",
"@lit-labs/task": "^1.0.0",
"@lit-labs/task": "^3.0.2",
"@lit/localize": "^0.10.0",
"@material/mwc-button": "^0.27.0",
"@material/mwc-checkbox": "^0.27.0",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class NamesController {
host: ReactiveControllerHost;
value?: string[];
readonly kinds = Names.kinds;
private task!: Task;
private task!: Task<[Names.Kind], Names.Result>;
private _kind: Names.Kind = '';

constructor(host: ReactiveControllerHost) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export class NamesController {
host: ReactiveControllerHost;
value?: string[];
readonly kinds = Names.kinds;
private task!: Task;
private task!: Task<[Names.Kind], Names.Result>;
private _kind: Names.Kind = '';

constructor(host: ReactiveControllerHost) {
Expand Down

0 comments on commit 826eebd

Please sign in to comment.