linkmore-design
Version:
π πlmη»δ»ΆεΊγπ
21 lines (20 loc) β’ 569 B
TypeScript
declare const useCoreOptions: ({ state, dispatch, props, bodyRef }: {
state: any;
dispatch: any;
props: any;
bodyRef: any;
}) => {
CoreMethods: {
getIsVideo: (url: any) => boolean;
setTransform: (type: any) => void;
beforeChange: (from: any, currentIndex: any) => void;
afterChange: (currentIndex: any) => void;
};
RefMethods: {
getState: () => any;
slickGoTo: (currentIndex: any) => void;
slickNext: () => void;
slickPrev: () => void;
};
};
export default useCoreOptions;