31 lines
655 B
TypeScript
31 lines
655 B
TypeScript
import { get_math } from "@/utils";
|
|
|
|
interface defaultSearch {
|
|
content: {
|
|
button_jump: string;
|
|
button_img: uploadList[];
|
|
button_link: object;
|
|
};
|
|
style: {
|
|
display_location: string;
|
|
offset_number: number;
|
|
float_style: string;
|
|
float_style_color: string;
|
|
};
|
|
}
|
|
const defaultSearch: defaultSearch = {
|
|
content: {
|
|
button_jump: 'link',
|
|
button_img: [],
|
|
button_link: {},
|
|
},
|
|
style: {
|
|
display_location: 'right',
|
|
offset_number: 120,
|
|
float_style: 'shadow',
|
|
float_style_color: '#32373a1a',
|
|
},
|
|
};
|
|
|
|
export default defaultSearch;
|