@shopify/app-bridge
Version:
**Shopify is doubling our engineering staff in 2021! [Join our team and work on libraries like this one.](https://smrtr.io/5GGrc)**
12 lines (11 loc) • 503 B
TypeScript
import type { MetaAction } from '../../actions/types';
import { Indexable } from '../type-validate';
import { Action } from '../../actions/Modal';
export declare function validateProps(props: Indexable, localOrigin?: string): {
path: string | undefined;
error: string;
message?: string | undefined;
value: any;
}[] | undefined;
export declare function validateAction(action: MetaAction, localOrigin?: string): import("../type-validate").ValidationError[] | undefined;
export { Action };