import type { CustomAttributeTypeInterface, ValidationError } from '@markdoc/markdoc';
export class CodeWalkthroughFilters implements CustomAttributeTypeInterface {
validate(_value: string): ValidationError[] {
return [];
}
static resolver = 'codeWalkthroughFilters';
}