File tree Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Expand file tree Collapse file tree 4 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 56
56
with :
57
57
node-version : 18
58
58
- uses : pnpm/action-setup@v4
59
- with :
60
- version : 9
61
59
- run : pnpm install --frozen-lockfile
62
60
- name : " Generate Explanation and Prep Changelogs"
63
61
id : explanation
Original file line number Diff line number Diff line change 50
50
# This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
51
51
registry-url : ' https://registry.npmjs.org'
52
52
- uses : pnpm/action-setup@v4
53
- with :
54
- version : 9
55
53
- run : pnpm install --frozen-lockfile
56
54
- name : npm publish
57
55
run : pnpm release-plan publish
Original file line number Diff line number Diff line change 19
19
/.template-lintrc.js
20
20
/.travis.yml
21
21
/.watchmanconfig
22
- /CODE_OF_CONDUCT.md
23
22
/CONTRIBUTING.md
24
23
/ember-cli-build.js
25
24
/testem.js
Original file line number Diff line number Diff line change 1
1
import { BufferedChangeset } from 'validated-changeset' ;
2
+ import type { HelperLike } from '@glint/template' ;
2
3
3
4
type BufferedChangesetConstructorParameters = ConstructorParameters < typeof BufferedChangeset > ;
4
5
@@ -14,3 +15,17 @@ type changesetFunctionsParameters = [
14
15
export class EmberChangeset extends BufferedChangeset { }
15
16
export function changeset ( ...args : changesetFunctionsParameters ) : EmberChangeset ;
16
17
export function Changeset ( ...args : changesetFunctionsParameters ) : EmberChangeset ;
18
+
19
+ type changesetGet = HelperLike < {
20
+ Args : {
21
+ Positional : [ changeset : BufferedChangeset | EmberChangeset , fieldPath : string ] ;
22
+ } ;
23
+ Return : unknown ;
24
+ } > ;
25
+
26
+ type changesetSet = HelperLike < {
27
+ Args : {
28
+ Positional : [ changeset : BufferedChangeset | EmberChangeset , fieldPath : string ] ;
29
+ } ;
30
+ Return : ( value : unknown ) => void ;
31
+ } > ;
You can’t perform that action at this time.
0 commit comments