|
// ------------- Bare import, Do nothing ------------- |
|
import './index.less' |
|
|
|
|
|
// ------------- import and re-export, replace import as the follow export ------------- |
|
|
|
import Form from 'src/components/Form'; |
|
export { default as Form } from 'src/components/Form'; |
|
|
|
import type Form from 'src/components/Form'; |
|
export { type default as Form } from 'src/components/Form'; |
|
|
|
|
|
import Form from "src/components/Form"; |
|
export { default as Form } from 'src/components/Form'; |
|
|
|
import type Form from "src/components/Form"; |
|
export { type default as Form } from 'src/components/Form'; |
|
|
|
import Form, { FormLayout, FormNode as Node } from 'src/components/Form'; |
|
export { default as Form, FormLayout, FormNode as Node } from 'src/components/Form'; |
|
|
|
import Form, { type FormLayout, FormNode as Node } from 'src/components/Form'; |
|
export { default as Form, type FormLayout, FormNode as Node } from 'src/components/Form'; |
|
|
|
import { Form, FormLayout, FormNode as Node } from 'src/components/Form'; |
|
export { Form, FormLayout, FormNode as Node } from 'src/components/Form'; |
|
|
|
import { Form, type FormLayout, type FormNode as Node } from 'src/components/Form'; |
|
export { Form, type FormLayout, type FormNode as Node } from 'src/components/Form'; |
|
|
|
import type { Form, FormLayout, FormNode as Node } from 'src/components/Form'; |
|
export type { Form, FormLayout, FormNode as Node } from 'src/components/Form'; |
|
|
|
import * as Form from 'src/components/RendererEditor/globalEditors'; |
|
export * as Form from 'src/components/RendererEditor/globalEditors'; |
|
|
|
|
|
import type * as Form from 'src/components/RendererEditor/globalEditors'; |
|
export type * as Form from 'src/components/RendererEditor/globalEditors'; |
|
|
|
import Form, { |
|
type FormLayout, |
|
FormNode as Node, |
|
} from 'src/components/Form'; |
|
export { |
|
default as Form, |
|
type FormLayout, |
|
FormNode as Node, |
|
} from 'src/components/Form'; |
|
|
|
|
|
import type Form, { |
|
type FormLayout, |
|
FormNode as Node, |
|
} from 'src/components/Form'; |
|
export { |
|
type default as Form, |
|
type FormLayout, |
|
FormNode as Node, |
|
} from 'src/components/Form'; |
|
|
|
|
|
import { |
|
Form, |
|
type FormLayout, |
|
FormNode as Node, |
|
} from 'src/components/Form'; |
|
export { |
|
Form, |
|
type FormLayout, |
|
FormNode as Node, |
|
} from 'src/components/Form'; |
|
|
|
|
|
import type { |
|
Form, |
|
FormLayout, |
|
FormNode as Node, |
|
} from 'src/components/Form'; |
|
export { |
|
Form, |
|
FormLayout, |
|
FormNode as Node, |
|
} from 'src/components/Form'; |
|
|
|
|
|
// ------------- Bare re-export, Remove ------------- |
|
// `export as RENAMED` is rename while export, but not rename in import, |
|
// just remove it will cause issue |
|
|
|
export { Form, FormLayout, FormNode as Node } |
|
|
|
export { type Form, FormLayout, type FormNode as Node } |
|
|
|
export type { Form, FormLayout, FormNode as Node } |
|
|
|
|
|
// ------------- Do nothing ------------- |
|
export const cs = 'adg' |
|
|
|
export const cs = {} |
|
|
|
export function ast() {} |
|
|
|
export class Ast { |
|
cs = '' |
|
} |
|
|
|
export type asg = string |
|
|
|
export default cs |