import { HasApiName, HasDBId, HasDescription, HasLabel, HasNamespace } from "../../../types.js"; export type SObject = { fullName?: string; } & HasDBId & HasLabel & HasApiName & HasDescription & HasNamespace;