Sha256: d59614b0f6e9da6dcebe6250b6b5a5b17bfaf8528fdadab5745e9687178af272

Contents?: true

Size: 421 Bytes

Versions: 62

Compression:

Stored size: 421 Bytes

Contents

```C
// External import entry
struct Sass_Import {
  char* imp_path; // path as found in the import statement
  char *abs_path; // path after importer has resolved it
  char* source;
  char* srcmap;
  // error handling
  char* error;
  size_t line;
  size_t column;
};

// Struct to hold importer callback
struct Sass_Importer {
  Sass_Importer_Fn importer;
  double           priority;
  void*            cookie;
};
```

Version data entries

62 entries across 60 versions & 17 rubygems

Version Path
sassc-1.8.3 ext/libsass/docs/api-importer-internal.md
sassc-1.8.2 ext/libsass/docs/api-importer-internal.md