Files
metabuilder/frontends/nextjs/src/lib/lua/examples/lua-examples.ts
JohnDoe6345789 3f5f9d66cc fix: standardize import formatting across multiple files
- Adjusted import statements to ensure consistent spacing and formatting in various test files, utility files, and component files.
- Updated type imports to maintain uniformity in spacing.
- Ensured that all import statements follow the same style for better readability and maintainability.
2025-12-29 22:49:05 +00:00

13 lines
442 B
TypeScript

import { getLuaExampleCode } from './get-lua-example-code'
import { getLuaExamplesList } from './get-lua-examples-list'
import { LUA_EXAMPLES, type LuaExampleKey } from './lua-examples-data'
export { getLuaExampleCode, getLuaExamplesList, LUA_EXAMPLES, type LuaExampleKey }
export const luaExamples = LUA_EXAMPLES
export class LuaExamples {
static getLuaExampleCode = getLuaExampleCode
static getLuaExamplesList = getLuaExamplesList
}