Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export function fnSTConfig(): STConfig {
return {
...new STConfig(),
...{
modal: { size: 'lg' }
} as STConfig
};
}
export function fnSTConfig(): STConfig {
return {
...new STConfig(),
modal: { size: 'lg' },
};
}
export function fnSTConfig(): STConfig {
return {
...new STConfig(),
...({
modal: { size: 'lg' },
} as STConfig),
};
}
export function fnSTConfig(): STConfig {
return {
...new STConfig(),
...{
modal: { size: 'lg' }
} as STConfig
};
}
export function fnSTConfig(): STConfig {
return Object.assign(new STConfig(), {
ps: 3,
});
}
export function fnSTConfig(): STConfig {
return {
...new STConfig(),
modal: { size: 'lg' },
};
}
export function fnSTConfig(): STConfig {
return {
...new STConfig(),
...{
modal: { size: 'lg' }
} as STConfig
};
}