zoekt: 1830 files / 24588 matches (truncated) / 219.12ms neogrok: 20 files / 174 matches

git.drupalcode.org/project/theme_file_editorace-builds-master/demo/kitchen-sink/docs/type_script.ts 1 match | 1.0.x | TypeScript | №1

git.drupalcode.org/project/module_file_editorace-builds/demo/kitchen-sink/docs/type_script.ts 1 match | 1.0.x | TypeScript | №2

git.drupalcode.org/project/pm_appfem-kanban/src/lib/stateMachine/types.ts 1 match | 1.0.x | TypeScript | №3

git.drupalcode.org/project/theme_file_editorace-builds-master/demo/kitchen-sink/docs/typescript.ts 1 match | 1.0.x | TypeScript | №4

git.drupalcode.org/project/module_file_editorace-builds/demo/kitchen-sink/docs/typescript.ts 1 match | 1.0.x | TypeScript | №5

git.drupalcode.org/project/countupjs/types.d.ts 1 match | 3.x, 3.0.x | TypeScript | №6

git.drupalcode.org/project/aesirx_analyticsbuild/assets/bi/types.d.ts 1 match | main | TypeScript | №7

git.drupalcode.org/project/canvasui/src/types/UUID.ts 1 match | 1.x | TypeScript | №8

1 export type UUID = string;

git.drupalcode.org/project/dsfr_pluginnode_modules/yaml/types.d.ts 61 matches | master, 1.0.x | TypeScript | №9

2 import { CST } from './parse-cst'3 import { Type } from './util'4
29 * directly.30 * @param tag Use to specify the collection type, e.g. `"!!omap"`. Note that31 * this requires the corresponding tag to be available in this schema.
52 export namespace Schema {53 type Name = 'core' | 'failsafe' | 'json' | 'yaml-1.1'54
98 99 type TagId =100 | 'binary'
115 116 type Tag = CustomTag | DefaultTag117

git.drupalcode.org/project/canvasui/src/types/Form.ts 5 matches | 1.x | TypeScript | №10

1 import type {2 ComponentModels,
4 } from '@/features/layout/layoutModelSlice';5 import type { ComponentsList } from '@/types/Component';6 7 export interface InputMessage {8 type: 'error' | 'warning' | 'info';9 message: string;
14 components: ComponentsList | undefined;15 selectedComponentType: string;16 layout: Array<LayoutNode>;

git.drupalcode.org/project/search_web_componentslit/src/types.ts 12 matches | 1.0.x | TypeScript | №11

1 export interface SearchResponseType {2 search_results: SearchResultType[];3 search_results_count: number;
8 default_sort_order: string;9 facets: SearchFacetsType[];10 took: number;
16 field: string;17 mappings: SearchResultMappingType[];18 };
27 28 export interface SearchResultType {29 rendered_result: string;

git.drupalcode.org/project/canvasui/src/types/Review.ts 3 matches | 1.x | TypeScript | №12

1 import type { PendingChange } from '@/services/pendingChangesApi';2
19 20 export type UnpublishedChange = PendingChange & {21 pointer: string; // Unique identifier for the change
23 24 export type UnpublishedChangeGroups = Record<string, UnpublishedChange[]>;

git.drupalcode.org/project/experience_builderui/src/types/UUID.ts 1 match | 1.x, 0.x | TypeScript | №13

1 export type UUID = string;

git.drupalcode.org/project/experience_builderui/src/types/Form.ts 5 matches | 1.x, 0.x | TypeScript | №14

1 import type { ComponentsList } from '@/types/Component';2 import type {3 LayoutNode,
11 export interface InputMessage {12 type: 'error' | 'warning' | 'info';13 message: string;
18 components: ComponentsList | undefined;19 selectedComponentType: string;20 layout: Array<LayoutNode>;

git.drupalcode.org/project/canvasui/src/types/Pattern.ts 2 matches | 1.x | TypeScript | №15

1 import type { LayoutModelPiece } from '@/features/layout/layoutModelSlice';2
12 13 // Type for the API response, an object keyed by pattern ID14 export interface PatternsList {

git.drupalcode.org/project/ai_agents_debuggerjs/src/types.ts 8 matches | 1.0.x | TypeScript | №16

1 /**2 * Agent status item types from the polling service.3 */4 export type AgentItemType =5 | 'agent_started'
49 export interface AgentItem {50 type: AgentItemType;51 time: number;

git.drupalcode.org/project/dsfr_pluginnode_modules/colord/types.d.ts 22 matches | master, 1.0.x | TypeScript | №17

1 export declare type RgbColor = { 2 r: number;
5 }; 6 export declare type HslColor = { 7 h: number;
10 }; 11 export declare type HsvColor = { 12 h: number;
15 }; 16 export declare type HwbColor = { 17 h: number;
41 } 42 declare type WithAlpha<O> = O & { 43 a: number;

git.drupalcode.org/project/experience_builderui/src/types/Review.ts 3 matches | 1.x, 0.x | TypeScript | №18

1 import type { PendingChange } from '@/services/pendingChangesApi';2
19 20 export type UnpublishedChange = PendingChange & {21 pointer: string; // Unique identifier for the change
23 24 export type UnpublishedChangeGroups = Record<string, UnpublishedChange[]>;

git.drupalcode.org/project/canvasui/src/types/AutoSaves.ts 2 matches | 1.x | TypeScript | №19

1 export type AutoSavesHash = Record<2 string,
8 9 export type AutoSavesHashRecord = Record<string, AutoSavesHash>;

git.drupalcode.org/project/dsfr_pluginnode_modules/svgo/lib/types.ts 42 matches | master, 1.0.x | TypeScript | №20

1 export type XastDoctype = {2 type: 'doctype';3 name: string;4 data: {5 doctype: string;6 };