mirror of
https://github.com/datashard/snapshot.git
synced 2024-11-24 06:42:29 +00:00
remove export from createCustomLog function
This commit is contained in:
parent
bc6ffad697
commit
d45d7479f0
1 changed files with 1 additions and 1 deletions
|
@ -51,7 +51,7 @@ baseStyles.forEach((style) => {
|
||||||
* // Create a custom log with name "misc" and base color "#9333ea"
|
* // Create a custom log with name "misc" and base color "#9333ea"
|
||||||
* createCustomLog("misc", "#9333ea")
|
* createCustomLog("misc", "#9333ea")
|
||||||
*/
|
*/
|
||||||
export function createCustomLog(name, baseColor) {
|
function createCustomLog(name, baseColor) {
|
||||||
if (!name || !baseColor) {
|
if (!name || !baseColor) {
|
||||||
throw new Error('Missing parameters')
|
throw new Error('Missing parameters')
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue