sol2uml
Version:
Solidity contract visualisation tool.
14 lines (13 loc) • 473 B
TypeScript
import { StorageSection } from './converterClasses2Storage';
export declare const convertStorages2Dot: (storageSections: readonly StorageSection[], options: {
data: boolean;
backColor: string;
shapeColor: string;
fillColor: string;
textColor: string;
hideValues?: boolean;
}) => string;
export declare function convertStorage2Dot(storageSection: StorageSection, dotString: string, options: {
data: boolean;
hideValues?: boolean;
}): string;