mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-29 00:05:01 +00:00
- 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.
13 lines
442 B
TypeScript
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
|
|
}
|