Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dist/js/lattice/reciprocal/lattice_reciprocal.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Vector3DSchema } from "@mat3ra/esse/dist/js/types";
import { Lattice } from "../lattice";
type KPointCoordinates = number[];
type KPointPath = Array<{
export type KPointCoordinates = number[];
export type KPointPath = Array<{
point: string;
steps: number;
coordinates: KPointCoordinates;
Expand Down
9 changes: 2 additions & 7 deletions dist/js/material.d.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
import { HasConsistencyChecksHasMetadataNamedDefaultableInMemoryEntity } from "@mat3ra/code/dist/js/entity";
import type { ConsistencyCheck, MaterialSchema } from "@mat3ra/esse/dist/js/types";
import { type MaterialMixinConstructor, defaultMaterialConfig } from "./materialMixin";
export { defaultMaterialConfig };
declare const BaseInMemoryEntity: typeof import("@mat3ra/code/dist/js/entity").InMemoryEntity & import("@mat3ra/code/dist/js/entity/mixins/DefaultableMixin").DefaultableInMemoryEntityConstructor & {
createDefault<T extends import("@mat3ra/code/dist/js/utils/types").Constructor<import("@mat3ra/code/dist/js/entity").InMemoryEntity> & {
defaultConfig?: object | null | undefined;
}>(this: T): InstanceType<T> & {
isDefault: boolean;
};
} & import("@mat3ra/code/dist/js/entity/mixins/NamedEntityMixin").NamedInMemoryEntityConstructor & import("@mat3ra/code/dist/js/entity/mixins/HasMetadataMixin").HasMetadataInMemoryEntityConstructor & import("@mat3ra/code/dist/js/entity/mixins/HasConsistencyChecksMixin").HasConsistencyChecksInMemoryEntityConstructor;
declare const BaseInMemoryEntity: typeof HasConsistencyChecksHasMetadataNamedDefaultableInMemoryEntity;
type BaseMaterial = MaterialMixinConstructor & typeof BaseInMemoryEntity;
type MaterialSchemaWithConsistencyChecksAsString = Omit<MaterialSchema, "consistencyChecks"> & {
consistencyChecks?: ConsistencyCheck[];
Expand Down
4 changes: 2 additions & 2 deletions src/js/lattice/reciprocal/lattice_reciprocal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import { Lattice } from "../lattice";
import { paths } from "./paths";
import { symmetryPoints } from "./symmetry_points";

type KPointCoordinates = number[];
type KPointPath = Array<{
export type KPointCoordinates = number[];
export type KPointPath = Array<{
point: string;
steps: number;
coordinates: KPointCoordinates;
Expand Down
Loading