luigi icon indicating copy to clipboard operation
luigi copied to clipboard

Refactor ts declaration for context in luigi-client

Open JohannesDoberer opened this issue 1 year ago • 0 comments

Currently we have a context ts declaration where everything is stored. It makes more sense to split it up like:

export declare interface Context{
nodeParams?: NodeParams;
  pathParams?: PathParams;
...
}
export declare interface MetaContext{
internal?: {
    userSettings?: getUserSettings;
  };
...
}

Also update client-support-angular lib.

JohannesDoberer avatar Aug 30 '23 09:08 JohannesDoberer