Socket
Socket
Sign inDemoInstall

noodl-types

Package Overview
Dependencies
Maintainers
7
Versions
240
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

noodl-types - npm Package Compare versions

Comparing version 1.0.273 to 1.0.274

26

dist/pageTypes.d.ts
import type { ComponentObject } from './componentTypes';
/**
* Common properties found on pages.
* Computed via **TBH**
*/
export interface PageObject {
apiRequest?: any;
init?: any[];
components: ComponentObject[];
final?: string;
init?: string[];
check?: string[];
save?: string[];
check?: any[];
event?: any;
final?: any;
formData?: any;
generalInfo?: any;
lastTop?: number;
listData?: any;
module?: string;
pageNumber?: string | number;
save?: any;
title?: string;
viewPort?: any;
update?: string[];
module?: string;
pageNumber?: string;
viewport?: any;
lastTop?: number;
[key: string]: any;
}

@@ -0,1 +1,2 @@

import type { LiteralUnion } from 'type-fest';
import type { ReferenceString } from './ecosTypes';

@@ -5,2 +6,13 @@ import type { ActionObject } from './actionTypes';

export type ActionChain = (ActionObject | EmitObjectFold | GotoObject | IfObject)[];
export type BuiltInDataInDataOutObject<S extends string = string> = Record<`=.builtIn${S}`, {
dataIn: any;
dataOut: string;
}>;
export type BuiltInEmptyObject<S extends string = string> = Record<`=.builtIn${S}`, '' | null | undefined>;
export type ConfigKey = LiteralUnion<'aitmed', string>;
export interface DesignSuffix {
widthHeightRatioThreshold?: number;
greaterEqual?: string;
less?: string;
}
export interface EmitObject {

@@ -16,2 +28,5 @@ actions: any[];

};
export type Extension = LiteralUnion<'yml', string>;
export type FileSuffix = `.${string}`;
export type FileName = `${string}.${Extension}`;
export type GotoUrl = string;

@@ -26,2 +41,6 @@ export interface GotoObject<V = string> {

}
export interface MinMaxObject {
min: any;
max: any;
}
export type Path<V = any> = V extends string ? string : V extends EmitObjectFold ? EmitObjectFold : V extends IfObject ? IfObject : EmitObjectFold | IfObject | string;

@@ -28,0 +47,0 @@ export type TextBoardObject = ({

@@ -14,3 +14,3 @@ {

],
"gitHead": "0b9e684034928e0e7dbd3f056ba3fc39dc8e6320",
"gitHead": "12f36ba01c0e3f6e069650f933a4068887532537",
"homepage": "",

@@ -35,3 +35,3 @@ "license": "ISC",

"types": "dist/index.d.ts",
"version": "1.0.273"
"version": "1.0.274"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc