Home
last modified time | relevance | path

Searched refs:ActionObject (Results 1 – 5 of 5) sorted by relevance

/third_party/typescript/tests/baselines/reference/
DvarianceAnnotations.types300 _action: ActionObject<TEvent>;
301 >_action : ActionObject<TEvent>
307 interface ActionObject<TEvent extends { type: string }> {
315 declare function createMachine<TEvent extends { type: string }>(action: ActionObject<TEvent>): Stat…
316 >createMachine : <TEvent extends { type: string; }>(action: ActionObject<TEvent>) => StateNode<any,…
318 >action : ActionObject<TEvent>
327 >createMachine : <TEvent extends { type: string; }>(action: ActionObject<TEvent>) => StateNode<any,…
336 declare const qq: ActionObject<{ type: "PLAY"; value: number }>;
337 >qq : ActionObject<{ type: "PLAY"; value: number; }>
343 >createMachine : <TEvent extends { type: string; }>(action: ActionObject<TEvent>) => StateNode<any,…
[all …]
DvarianceAnnotations.js143 _action: ActionObject<TEvent>;
147 interface ActionObject<TEvent extends { type: string }> {
151 declare function createMachine<TEvent extends { type: string }>(action: ActionObject<TEvent>): Stat…
159 declare const qq: ActionObject<{ type: "PLAY"; value: number }>;
310 _action: ActionObject<TEvent>;
313 interface ActionObject<TEvent extends {
320 }>(action: ActionObject<TEvent>): StateNode<any, any>;
323 declare const qq: ActionObject<{
DvarianceAnnotations.symbols391 _action: ActionObject<TEvent>;
393 >ActionObject : Symbol(ActionObject, Decl(varianceAnnotations.ts, 143, 1))
402 interface ActionObject<TEvent extends { type: string }> {
403 >ActionObject : Symbol(ActionObject, Decl(varianceAnnotations.ts, 143, 1))
408 >exec : Symbol(ActionObject.exec, Decl(varianceAnnotations.ts, 145, 57))
414 declare function createMachine<TEvent extends { type: string }>(action: ActionObject<TEvent>): Stat…
419 >ActionObject : Symbol(ActionObject, Decl(varianceAnnotations.ts, 143, 1))
438 declare const qq: ActionObject<{ type: "PLAY"; value: number }>;
440 >ActionObject : Symbol(ActionObject, Decl(varianceAnnotations.ts, 143, 1))
DvarianceAnnotations.errors.txt59 …TS2345: Argument of type 'ActionObject<{ type: "PLAY"; value: number; }>' is not assignable to par…
299 _action: ActionObject<TEvent>;
303 interface ActionObject<TEvent extends { type: string }> {
307 …declare function createMachine<TEvent extends { type: string }>(action: ActionObject<TEvent>): Sta…
315 declare const qq: ActionObject<{ type: "PLAY"; value: number }>;
319 …TS2345: Argument of type 'ActionObject<{ type: "PLAY"; value: number; }>' is not assignable to par…
/third_party/typescript/tests/cases/conformance/types/typeParameters/typeParameterLists/
DvarianceAnnotations.ts145 _action: ActionObject<TEvent>;
149 interface ActionObject<TEvent extends { type: string }> { interface
153 declare function createMachine<TEvent extends { type: string }>(action: ActionObject<TEvent>): Stat…
161 declare const qq: ActionObject<{ type: "PLAY"; value: number }>;